md5.hpp 161 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef GUARD_OLC_MD5_HPP
#define GUARD_OLC_MD5_HPP

#include <string>

namespace olCompile {

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

} // namespace olCompile

#endif