This is MD5 hash library for C++.
This code uses C++11 features.
MD5 hasing function is in namespace MD5. This function always return 0.
int MD5::hash(const std::string* src, std::string* dst);
MD5 hasing function is in namespace MD5.
std::string MD5::hash(const std::string& src);
In detail, please shows md5_test.cpp. That code is compiled on following commands.
g++ md5_test.cpp -I. -L. -lmd5 -std=c++11 -o test.out
This codes are licensed by New BSD License.