Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
[fw/altos] / src / test / ao_aes_test.c
index dcedbfca72ddaffcb2c7406223519aec9bf37789..e1ed5728d803137cc2d7a7516b01f53933eb417c 100644 (file)
@@ -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
  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
 
-#define __pdata
-#define __data
-#define __xdata
-#define __code
-#define __reentrant
+#define const
 
 #include <string.h>
 #include <stdio.h>
@@ -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);