📄 aes_main.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 + -