On Sunday, October 20, 2013 11:17:20 AM UTC-4, LLL86 wrote:
>
>
> #include <cryptlib.h>
> #include <md5.h>
>
> int main() {
>     CryptoPP::Weak1::MD5 hash;
>     hash.Update(......);
>     hash.TruncatedFinal(........);
>     return 0;
> }
>
> I can't do "MD5.CalculateDigest(....)"
>
You need to do a:

    hash.CalculateDigest(....);

See http://www.cryptopp.com/docs/ref/cryptlib_8h_source.html for the 
definition of the HashTransformation (around line 500).

Jeff

-- 
-- 
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