md5.hpp 171 Bytes
Newer Older
1
2
3
4
5
#ifndef GUARD_OLC_MD5_HPP
#define GUARD_OLC_MD5_HPP

#include <string>

Chao Liu's avatar
rename  
Chao Liu committed
6
namespace online_compile {
7
8
9

std::string md5(std::string s);

Chao Liu's avatar
rename  
Chao Liu committed
10
} // namespace online_compile
11
12

#endif