Execute AES in a cycle
This commit is contained in:
parent
c5e559486e
commit
cf6d0b99cb
|
@ -184,9 +184,7 @@ void aes(uint8_t *in, uint8_t *out, uint8_t *skey)
|
|||
//****************************
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
// test aes encryption
|
||||
printf("Testing aes\n");
|
||||
{
|
||||
for (int i = 0; i < 1000000; i++) {
|
||||
uint8_t key[16] = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff };
|
||||
uint8_t in[16] = { 0xab, 0xcd, 0xef, 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0x01, 0x23, 0x45, 0x67, 0x89};
|
||||
uint8_t out[16] = { 0, /*...*/ };
|
||||
|
|
Loading…
Reference in a new issue