altos/test: Adapt flight test to int16_t flight number type
[fw/altos] / src / test / ao_aes_test.c
index dcedbfca72ddaffcb2c7406223519aec9bf37789..135c6f1a4c6ce0a86d09c5bcfdacadeeeb251294 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
@@ -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);