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

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