⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reg.h

📁 (转)一个包含目前所有流行的加解密代码(RSA
💻 H
字号:
//+--------------------------------------------------------------------------
//                                                                              
//     reg.h ---- 共享软件加密算法库专业版
//     Copyright (c) 2002-2005 liangs Studio, All rights reserved
//     Created 2005/07/19 by liangs
//     Version: 3.6.1
//     Homepage: http://liangs99.yeah.net
//     Email: regdll@tom.com
//
//---------------------------------------------------------------------------+


#ifdef __cplusplus
extern "C" {
#endif

/* basic export function define */

BOOL WINAPI GetHardDiskId(LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI GetMainBoardId(LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI GetMACAddress(LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI BlowFishEncrypt(LPCTSTR lpInBuffer, LPCTSTR lpKey, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI BlowFishDecrypt(LPCTSTR lpInBuffer, LPCTSTR lpKey, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI MD5Encrypt(LPTSTR lpInBuffer,LPTSTR lpOutBuffer, int length, LPCTSTR lpRegisterCode);
BOOL WINAPI SHAEncrypt(LPTSTR lpInBuffer,LPTSTR lpOutBuffer, int length, LPCTSTR lpRegisterCode);
BOOL WINAPI Secret16Encrypt(LPCTSTR lpInBuffer, LPCTSTR lpKey, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI CRCFileCheck(LPCTSTR FileNameStr, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI EncryptStringFun1(LPCTSTR lpInBuffer, LPCTSTR lpKey, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI DecryptStringFun1(LPCTSTR lpInBuffer, LPCTSTR lpKey, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI EncryptStringFun2(LPCTSTR lpInBuffer, LPCTSTR lpKey, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI DecryptStringFun2(LPCTSTR lpInBuffer, LPCTSTR lpKey, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI FileEncrypt(LPCTSTR lpInputFileName, LPCTSTR lpOutputFileName, LPCTSTR lpKey, LPCTSTR lpRegisterCode);
BOOL WINAPI FileDecrypt(LPCTSTR lpInputFileName, LPCTSTR lpOutputFileName, LPCTSTR lpKey, LPCTSTR lpRegisterCode);
BOOL WINAPI RSAEncrypt(LPCTSTR lpInBuffer, LPCTSTR D_String, LPCTSTR N_String, int Mode, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI RSADecrypt(LPCTSTR lpInBuffer, LPCTSTR N_String, int Mode, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI Base64Encode(LPCTSTR lpInBuffer, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI Base64Decode(LPCTSTR lpInBuffer, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI CRC32(LPTSTR lpInBuffer, int length, LPTSTR lpOutBuffer, LPCTSTR lpRegisterCode);
BOOL WINAPI DesEncrypt(LPCTSTR lpInBuffer,LPTSTR lpOutBuffer, LPCTSTR lpKey, LPCTSTR lpRegisterCode);
BOOL WINAPI DesDecrypt(LPCTSTR lpInBuffer,LPTSTR lpOutBuffer, LPCTSTR lpKey, LPCTSTR lpRegisterCode);
BOOL WINAPI CharToHex(LPCTSTR lpInBuffer,LPTSTR lpOutBuffer);
BOOL WINAPI HexToChar(LPCTSTR lpInBuffer,LPTSTR lpOutBuffer);
BOOL WINAPI GetDllVersion(LPTSTR lpOutBuffer);

#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -