You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
338 B

10 years ago
#ifndef MD5_H
#define MD5_H
#include <string>
std::string md5sum(std::string dat);
10 years ago
std::string md5sum(const void* dat, size_t len);
std::string md5file(const char* filename);
std::string md5file(std::FILE* file);
std::string md5sum6(std::string dat);
10 years ago
std::string md5sum6(const void* dat, size_t len);
#endif // end of MD5_H