Tagged Questions

2
votes
2answers
905 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
2answers
529 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 ...