Encryption of Sensitive Files - Security & Cryptography
Users browsing this thread: 3 Guest(s)
|
|||
As a system administrator, or any other occupation that you have to deal with sensitive information, it is often recommended that you encrypt the sensitive information in case it is stolen or found.
Personally, for the encryption of files I use a program commonly found on *Nix systems called "CCrypt". CCrypt uses AES-256 encryption which is very strong. Here's an example: I have a master password file, and say that the contents are such: Code: Revcore password123 After install ccrypt I type: Code: ccrypt -e password.txt Then, when I view the encrypted file: Code: F�Av�qB,��lbR��o�Dj��]�(��oe�W�]�zi�۲eLF� Don't think anyone is going to be view this! Similarly, you can decrypt with "ccrypt -d" and view/cat with "ccrypt -c" |
|||
Messages In This Thread |
Encryption of Sensitive Files - by Revcore - 22-07-2012, 06:27 PM
RE: Encryption of Sensitive Files - by yrmt - 22-07-2012, 06:36 PM
RE: Encryption of Sensitive Files - by Robby - 23-07-2012, 10:57 AM
RE: Encryption of Sensitive Files - by venam - 21-08-2012, 06:40 AM
RE: Encryption of Sensitive Files - by D9u - 07-09-2012, 05:28 AM
RE: Encryption of Sensitive Files - by venam - 07-09-2012, 06:46 AM
RE: Encryption of Sensitive Files - by OpenSource - 23-09-2012, 02:49 AM
RE: Encryption of Sensitive Files - by CrossFold - 25-09-2012, 01:45 PM
RE: Encryption of Sensitive Files - by Dyzaster - 20-11-2012, 02:20 AM
|