mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-27 18:59:26 +08:00
20 lines
221 B
C++
20 lines
221 B
C++
#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_
|