Hi,
I'm using CryptoPP and MSVC 2010.
I compiled CryptoPP as a static library and "succesfully" added it into my 
project.

I tried a simple test with some MD5 hashing and it works fine but I cannot 
get to compile the examples I find of CryptoPP website.
In details... I can't use functions like "CalculateDigest". I have to use 
Update() and TruncatedFinal().
I'd like to understand why.

What I'm doing is 

#include <cryptlib.h>
#include <md5.h>

int main() {
CryptoPP::Weak1::MD5 hash;
hash.Update(......);
hash.TruncatedFinal(........);
return 0;
}

I can't do "MD5.CalculateDigest(....)"

What am I missing?

Thanks a lot!

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to