aeslib.h
来自「简单好用的AES算法」· C头文件 代码 · 共 18 行
H
18 行
#ifndef _INC_AESLIB_INCLUDED
#define _INC_AESLIB_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
int aesEncryptFile(char* szSrcFile,char* szDesFile,char* szPassword);
int aesDecryptFile(char* szSrcFile,char* szDesFile,char* szPassword);
int aesEncryptBlock(const unsigned char in_blk[],unsigned int in_blk_len,unsigned char out_blk[],unsigned int *out_blk_len,char* szPassword);
int aesDecryptBlock(const unsigned char in_blk[],unsigned int in_blk_len,unsigned char out_blk[],unsigned int *out_blk_len,char* szPassword);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?