cryptopp

C++ cryptographic algorithms library for encryption and security

brewmacoslinux
Try with needOr install directly
Source

About

Free C++ class library of cryptographic schemes

Commands

cryptopp

Examples

Compile and link against cryptopp library in C++ projects$ g++ -o myprogram myprogram.cpp -lcryptopp
Include cryptopp headers in C++ code for AES encryption$ echo '#include <cryptopp/aes.h>' | head -1
Link cryptopp library when building with pkg-config$ g++ myprogram.cpp $(pkg-config --cflags --libs libcryptopp) -o myprogram