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

📄 aeslib.h

📁 简单好用的AES算法
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -