I need a library which can encrypt/decrypt files with a symmetric key in linux.
I also need a library to compress the files that are going to be encrypted. Which of these libraries should I use for compression?: gzip, zlib, libarchive, libtar.
Both the libraries has to be able to decrypt/decompress to memory, as I do not want to leave any traces on the harddrive.
This could probably be done with a password protected archive, though I do not know if there are any pros/cons to it over using both libraries.