I tried installing Crypto ++ using apt-get: sudo apt-get install libcrypto++-dev libcrypto++-doc libcrypto++-utils . And then I tried to compile a very simple program, for example:
#include <iostream> #include "aes.h" #include "modes.h" using namespace std; using namespace CryptoPP; int main() { cout << "Yo, man!" << endl; return 0; }
The result is fatal error: aes.h: No such file or directory .
I am a new Ubuntu user (formerly Windows), so I did some research, but most people say that typing one command is enough to get the repository with the Crypto ++ library and make it work. Well, that is not in my case.
compilation ubuntu crypto ++
Gspdibbler
source share