14 lines
156 B
C++
14 lines
156 B
C++
|
#pragma once
|
||
|
|
||
|
/*
|
||
|
主要是用于各种加密
|
||
|
*/
|
||
|
|
||
|
#include "QCL_Include.hpp"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
namespace encrypt
|
||
|
{
|
||
|
string MD5(const string &info);
|
||
|
}
|