#ifndef _Crypto_H_ #define _Crypto_H_ #include #include #include #include using namespace std; class Crypto { public: static string md5(string src); }; #endif // ! _Crypto_H_