Tagged Questions
2
votes
2answers
1k views
Can anybody give me a working example of generating a SHA256 hash in C++ with Crypto++, taking a string as input and outputting a string?
I need an example of how to use Crypto++ to generate a SHA256 hash from a std::string and output a std::string. I can't seem to figure it out. Everything I've tried gives me invalid output.
Here's ...
0
votes
1answer
49 views
Performing a WHIRLPOOL hash in C++
This sounds like a relatively simple question, but I haven't been able to get Crypto++ to work. I'm using Microsoft Visual C++ 2010 Express (I'm cheap) and the .vcxproj/.vcproj/.sln files included in ...
0
votes
2answers
544 views
Given filename, how can I get the Adler32 using Crypto++
Given a "string filename", how can I get the Adler32 checksum using the C++ Crypto++ library. I am a little confused about using their FileSource and Sink system. Below I have the skeleton of the code ...