c++securityencryption

C++ free encryption libraries


So far I've come across Botan and Crypto++ which both provide reversible (e.g AES) and non-reversible (e.g SHA) encryption. I wondered if anyone can recommend either, or something else?


Solution

  • OpenSSL has all the functionality that you would expect and it is often already installed (at least on Linux).

    It supports asymmetric/symmetric encryption, digital signatures and hashing algorithms. For example, you can use the high-level OpenSSL EVP API for symmetric encryption.