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.

11 lines
242 B

#include <iostream>
#include "md5sum.h"
int main() {
auto ret = md5sum("dnomd343");
std::cout << ret << std::endl;
auto val = md5file("/Users/jucong.lin/klotski/third_party/md5sum/343.txt");
std::cout << val << std::endl;
}