CryptoStream++ provides a set of wrappers around the Crypto++ API that can be used to create encrypted file streams in place of standard std::fstream(s). Uses CTR mode.
Note: there is nothing special about the file format. The user will need to take care of remembering the initialization values as well as the password.
Supports all of the block ciphers currently supported by Crypto++:
Uses Crypto++'s implementation of PBKDF2 for key derivation (a million rounds).
Developed in concert with KnoxCrypt, an encrypted filesystem.
See example.cpp
For example:
clang++ -std=c++11 -I/usr/local/include -L/usr/local/lib example.cpp -lcryptopp -o example
Note: Requires libcrypto++ to be installed