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 the new code after interjay's answer:

string SHA256(string data)
{
    byte const* pbData = (byte*) data.data();
    unsigned int nDataLen = data.size();
    byte abDigest[CryptoPP::SHA256::DIGESTSIZE];

    CryptoPP::SHA256().CalculateDigest(abDigest, pbData, nDataLen);

    return string((char*)abDigest);
}

The output for SHA256("A"); is

enter image description here

How can I turn this into a readable format?

Thanks to interjay's answer I was able to generate the final hash.

link|improve this question

2  
Welcome to Stack Overflow! It does not work like that here; you have to show what you've tried, and then we'll help you. – Etienne de Martel May 8 '11 at 20:17
1  
Please don't remove parts of your question that have been answered. – interjay May 8 '11 at 20:45
If you don't want to help, why bother commenting? The question was clearly worded and understandable, absolutely worth answering without the previous attempts. Nowhere in the faq it is stated that one needs to show their previous attempts. – fish May 8 '11 at 20:49
@Tamas: No, the FAQ does not state that. However, showing a failed attempt will help distinguish real questions from "plz send me teh codez". Also, you might get bonus advice on coding style or other issues. – André Caron Aug 12 '11 at 20:37
@André, those are generally true, but this question was well written and by no means "plz send me teh codez"-type question. That's why I was arguing. – fish Aug 14 '11 at 14:40
feedback

2 Answers

up vote 2 down vote accepted

This line will give the wrong results:

unsigned int nDataLen = sizeof(pbData);

It will always give you the size of a pointer. What you want instead is data.size().

Also, you don't need this part:

if(!CryptoPP::SHA256().VerifyDigest(abDigest, pbData, nDataLen))
{
    return SHA256(data);
}

It should always verify correctly, since you just calculated the digest based on the same data. And if it didn't, you'd go into infinite recursion.

To get readable output, you can convert it to hex. Here's an example for MD5 from the Crypto++ Wiki, it should work for you if you replace MD5 with SHA256:

CryptoPP::MD5 hash;
byte digest[ CryptoPP::MD5::DIGESTSIZE ];
std::string message = "abcdefghijklmnopqrstuvwxyz";

hash.CalculateDigest( digest, message.c_str(), message.length() );

CryptoPP::HexEncoder encoder;
std::string output;
encoder.Attach( new CryptoPP::StringSink( output ) );
encoder.Put( digest, sizeof(digest) );
encoder.MessageEnd();

std::cout << output << std::endl;  
link|improve this answer
Okay I made those changes and while it now seems to be giving me the same output each time, the output is in all gibberish of random weird characters. How can I change it to a readable format? – Doug May 8 '11 at 20:39
@Doug See my edited answer. – interjay May 8 '11 at 20:46
feedback

I got this from here

std::string SHA256HashString(std::string aString){
    std::string digest;
    CryptoPP::SHA256 hash;

    CryptoPP::StringSource foo(aString, true,
    new CryptoPP::HashFilter(hash,
      new CryptoPP::Base64Encoder (
         new CryptoPP::StringSink(digest))));

    return digest;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.