mirror of
https://github.com/kokke/tiny-AES-c
synced 2024-11-22 05:21:52 +03:00
Update aes.c
This commit is contained in:
parent
8ddb7c6e1b
commit
339c208685
2
aes.c
2
aes.c
@ -66,7 +66,7 @@ static uint8_t* in, *out, state[4][4];
|
|||||||
static uint8_t RoundKey[176];
|
static uint8_t RoundKey[176];
|
||||||
|
|
||||||
// The Key input to the AES Program
|
// The Key input to the AES Program
|
||||||
static uint8_t* Key;
|
static const uint8_t* Key;
|
||||||
|
|
||||||
// The lookup-tables are marked const so they can be placed in read-only storage instead of RAM
|
// The lookup-tables are marked const so they can be placed in read-only storage instead of RAM
|
||||||
// The numbers below can be computed dynamically trading ROM for RAM -
|
// The numbers below can be computed dynamically trading ROM for RAM -
|
||||||
|
Loading…
Reference in New Issue
Block a user