summaryrefslogtreecommitdiff
path: root/src/test/ao_aes_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ao_aes_test.c')
-rw-r--r--src/test/ao_aes_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ao_aes_test.c b/src/test/ao_aes_test.c
index 4b65df8d..135c6f1a 100644
--- a/src/test/ao_aes_test.c
+++ b/src/test/ao_aes_test.c
@@ -30,7 +30,7 @@
#include "../aes/ao_aes_tables.c"
#include "../aes/ao_aes.c"
-static uint8_t key[16];
+static uint8_t my_key[64];
static uint8_t text[16];
static uint8_t cbc[16];
@@ -41,7 +41,7 @@ main (int argc, char **argv)
ao_aes_init();
ao_aes_set_mode(ao_aes_mode_cbc_mac);
- ao_aes_set_key(key);
+ ao_aes_set_key(my_key);
ao_aes_zero_iv();
ao_aes_run(text, cbc);