mirror of https://github.com/dnomd343/md5sum.git
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
245 B
13 lines
245 B
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace md5 {
|
|
|
|
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);
|
|
|
|
} // namespace md5
|
|
|