-
Notifications
You must be signed in to change notification settings - Fork 0
/
AES-128_C.c
76 lines (57 loc) · 1.5 KB
/
AES-128_C.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <stdio.h>
#include <stdint.h>
#define Nb 4
#define Nk 4
#define Nr 10
typedef uint8_t state_t[4][4];
static state_t* state;
static const uint8_t sbox[256] = {
// S-box values
};
static const uint8_t rsbox[256] = {
// Inverse S-box values
};
static const uint8_t Rcon[11] = {
// Rcon values
};
static uint8_t RoundKey[176];
static uint8_t Key[16];
void KeyExpansion(void) {
// Implementação da expansão de chave
}
void AddRoundKey(uint8_t round) {
// Implementação da adição da chave de rodada
}
void SubBytes(void) {
// Implementação da substituição de bytes
}
void ShiftRows(void) {
// Implementação do deslocamento de linhas
}
void MixColumns(void) {
// Implementação da mistura de colunas
}
void Cipher(void) {
// Implementação da cifra AES
}
void AES128_ECB_encrypt(uint8_t* input, const uint8_t* key, uint8_t *output) {
// Implementação da criptografia AES-128 no modo ECB
}
int main() {
uint8_t key[16] = { // Chave de exemplo
0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,
0xab, 0xf7, 0xcf, 0x45, 0x9f, 0x4f, 0x6a, 0x4b
};
uint8_t input[16] = { // Texto claro de exemplo
0x32, 0x43, 0xf6, 0xa8, 0x88, 0x5a, 0x30, 0x8d,
0x31, 0x31, 0x98, 0xa2, 0xe0, 0x37, 0x07, 0x34
};
uint8_t output[16];
AES128_ECB_encrypt(input, key, output);
printf("Texto cifrado:\n");
for (int i = 0; i < 16; i++) {
printf("%02x ", output[i]);
}
printf("\n");
return 0;
}