X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Ftest%2Fao_aes_test.c;h=e1ed5728d803137cc2d7a7516b01f53933eb417c;hb=cd151a622537e1436362bd71229c6ce22a3957d0;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..e1ed5728 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 @@ -15,11 +16,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#define __pdata -#define __data -#define __xdata -#define __code -#define __reentrant +#define const #include #include @@ -29,7 +26,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 +37,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);