"vscode:/vscode.git/clone" did not exist on "8076d7f79683cc17959db69765b323ba69b45ae4"
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