
12 Dec
2005
12 Dec
'05
7:55 p.m.
When I need crypto algorithms, I use Crypto++, a fine, open source, C++ library of cryptographic primitives. ;-) [ Which, unsurprisingly, includes several digest implementations, including MD5 ]
Project page: <http://www.eskimo.com/~weidai/cryptlib.html>
Thanks for the link, looks like a good resource for crypto applications. In our case, we just want to hash strings to detect changes or errors, and a bit shy of exporting "true crypto" compiled/linked into our application from the USA to solve a non-crypto problem. std::string boost::md5(const std::string &) const Nigel