Users browsing this thread: 1 Guest(s)
venam
Administrators
For encrypting a single file there are many options such as:
PGP encryption softwares
scrypt and bcrypt (slow and secure hash algo)
ccrypt (not sure what it's using)

Encrypting a single file is useless if it stays in memory or on the disk after you've opened it. Make sure it's not cached, replicated in /tmp, this happens a lot when you open it with vim, etc.. Otherwise a good reverse engineer in data carving can fetch it back.

Moreover, if you really want to erase that file check the `shred` utility or consider using full disk encryption.


Messages In This Thread
Encryption - by October - 27-06-2015, 10:30 PM
RE: Encryption - by sulami - 28-06-2015, 06:07 AM
RE: Encryption - by venam - 28-06-2015, 06:27 AM
RE: Encryption - by October - 28-06-2015, 05:57 PM
RE: Encryption - by miatomi - 29-06-2015, 12:44 AM
RE: Encryption - by venam - 29-06-2015, 03:14 AM
RE: Encryption - by z3bra - 29-06-2015, 04:35 AM
RE: Encryption - by xero - 29-06-2015, 03:03 PM
RE: Encryption - by October - 30-06-2015, 02:34 AM
RE: Encryption - by October - 30-06-2015, 11:44 PM