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.
11 lines
242 B
11 lines
242 B
1 year ago
|
#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;
|
||
|
}
|