#ifndef RH_ENCRYPTION_H #define RH_ENCRYPTION_H #include #include #include #include #include #include #include #include using namespace std; class RH_Encryption { public: RH_Encryption(); static function getFunctionHashLambda(string hashMethode); //static function hashForLambda(function functionLambda, string value); virtual ~RH_Encryption(); protected: private: static function none(); static function md5(); static function sha1(); static function sha224(); static function sha384(); static function sha256(); static function sha512(); static string bytesArrayToStrinctString(uint8_t, unsigned char*); }; #endif // RH_ENCRYPTION_H