我不知道在这里问这个问题是否正确。
我正在尝试在项目中使用Crypto ++库。我甚至无法开始使用它。这是我正在尝试的代码:
#include <cryptlib.h>
#include <sha.h>
int main()
{
SHA hash; // ERROR here. can't find SHA
return 0;
}
我尝试阅读下载包中包含的自述文件。我试过this但仍然无法让它发挥作用。我正在使用VS2010。
答案 0 :(得分:2)
来自here:
NAMESPACE_BEGIN(CryptoPP)
class CRYPTOPP_DLL SHA : public ...
SHA
似乎是命名空间CryptoPP
的成员。尝试:
CryptoPP::SHA hash;