📄 rsaenc.h
字号:
#ifndef _TGRSA_H
#define _TGRSA_H
#ifdef __cplusplus
extern "C" {
#endif
#define IN
#define OUT
//long __declspec(dllexport) __stdcall RSAEncryptData(IN unsigned char* pbPubKey,
// IN OUT unsigned char* pbData);
//
//long __declspec(dllexport) __stdcall RSADecryptData(IN unsigned char* pbPriKey,
// IN OUT unsigned char* pbData);
long __stdcall RSAData(
IN unsigned char* pbPubKey,
IN long ulPubKeyLen,
IN OUT unsigned char* pbData,
IN long ulDataLen);
long __stdcall RSAPubEncryptData(IN unsigned char* pbPubKey,
IN OUT unsigned char* pbData);
long __stdcall RSAPriDecryptData(IN unsigned char* pbPriKey,
IN OUT unsigned char* pbData);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -