Files
energy_storage/src/common/Crypto.h

20 lines
221 B
C
Raw Normal View History

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