just save

This commit is contained in:
2024-06-13 17:23:47 +02:00
parent 34fbefc138
commit 4e783ee6fd
10 changed files with 4060 additions and 19 deletions

8
main/aes128.h Executable file
View File

@@ -0,0 +1,8 @@
#ifndef AES128_H
#define AES128_H
void aes_init();
char aes_encrypt(unsigned char *input,unsigned char *output,unsigned char *key);
char aes_decrypt(unsigned char *input,unsigned char *output,unsigned char *key);
#endif