I've downloaded Crypto++ library which contains cryptopp.dll and cryptopp.lib files. But I don't know how to use them in my project. I've tried to add cryptopp.lib to linker and cryptopp.dll to exe file directory but it didn't helped. There's my code:
#include "stdafx.h"
#pragma comment(lib, "cryptopp.lib)
using namespace CryptoPP;
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
And it gives me this error:
error C2871: 'CryptoPP' : a namespace with this name does not exist
What I have to do to be able to use this library?