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

📄 aes_main.h

📁 用C语言实现的aes加解密算法。分组长度设定为128
💻 H
字号:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define KEY_SIZE 16 //    密钥长度为128位
#define N_ROUND  11
#define byte unsigned char
    byte plainText[16];    //    明文
    byte cipherText[16];    //密文   
   /******function****************/
	void show(byte *out_Text);
    byte* Cipher(byte* text, byte* key, int keySize);    
    byte* InvCipher(byte* text, byte* key, int keySize);

⌨️ 快捷键说明

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