Files
mir_server/sdk/utils/nonuse/EDPass.h

23 lines
741 B
C
Raw Normal View History

2025-01-09 17:45:40 +08:00
#ifndef _ED_PASS_H_
#define _ED_PASS_H_
/**
*
* sDest
* nDestSize (sDest末尾添加终止字符)
* sPassWord
* sKey128Bit 16
**/
const char* EncryptPassword(char* sDest, int nDestSize, const char* sPassWord, const char* sKey128Bit);
/**
*
* sDest
* nDestSize (sDest末尾添加终止字符)
* sPassWord
* sKey128Bit 16
**/
const char* DecryptPassword(char* sPassword, int nPasswordLen, const char* sEncrypted, const char* sKey128Bit);
#endif