This is an old revision of the document!
Table of Contents
Manually Encrypt Files
You may encrypt files for security.
Encrypt a File
To encrypt a file, open the terminal and use
cd directory bcrypt -c filename
After encryption, it will be renamed to filename.bfe.
Extract an Encrypted File
To extract a file encrypted using this method, use
cd directory bcrypt -c filename.bfe
If You Have More Than One File
If you have more than one file, it is best to compress them into a .tgz file first.
To do this use
tar -cvzf name.tgz files-or-directories
This may now be made into an encrypted file, using the method above.
After decrypting it, extract it using
tar -xvf name.tgz