X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Ftest%2Fao_aes_test.c;h=135c6f1a4c6ce0a86d09c5bcfdacadeeeb251294;hb=291bcd751991960ae3dad8c6523323fdcbafa16d;hp=dcedbfca72ddaffcb2c7406223519aec9bf37789;hpb=0488cd9cffc837e99490a0761216bbc5847ff400;p=fw%2Faltos diff --git a/src/test/ao_aes_test.c b/src/test/ao_aes_test.c index dcedbfca..135c6f1a 100644 --- a/src/test/ao_aes_test.c +++ b/src/test/ao_aes_test.c @@ -3,7 +3,8 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License. + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -29,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]; @@ -40,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);