1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| #ifndef TINYAES_H
| #define TINYAES_H
|
| #include <stdint.h>
| #include <stddef.h>
|
| #define AES_BLOCKLEN 16
| #define AES_KEYLEN 16
| #define AES_keyExpSize 176
|
| struct AES_ctx
| {
| uint8_t RoundKey[AES_keyExpSize];
| uint8_t Iv[AES_BLOCKLEN];
| };
|
| void AES_init_ctx_iv(struct AES_ctx* ctx, const uint8_t* key, const uint8_t* iv);
| void AES_CBC_encrypt_buffer(struct AES_ctx* ctx, uint8_t* buf, size_t length);
| void AES_CBC_decrypt_buffer(struct AES_ctx* ctx, uint8_t* buf, size_t length);
|
| #endif // TINYAES_H
|
|