Files
Netralib/include/encrypt.hpp
2025-09-08 15:12:25 +08:00

14 lines
156 B
C++

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