]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-noekeon-test.c
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / main-noekeon-test.c
index 95664b0fe1b894da44eb087cfd138082969d4ee2..1b6f55004396b7c42bafa705cfb676e1a3ece0ff 100644 (file)
@@ -1,7 +1,7 @@
 /* main-noekeon-test.c */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     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
@@ -29,9 +29,9 @@
 #include "bcal-performance.h"
 #include "bcal_noekeon.h"
 
-charalgo_name = "Noekeon";
+char *algo_name = "Noekeon";
 
-const bcdesc_tconst algolist[] PROGMEM = {
+const bcdesc_t *const algolist[] PROGMEM = {
        (bcdesc_t*)&noekeon_direct_desc,
        (bcdesc_t*)&noekeon_indirect_desc,
        NULL
@@ -45,7 +45,7 @@ void testrun_nessie_noekeon(void){
 }
 
 
-void testrun_stdtest_rundirect(void* data, void* key){
+void testrun_stdtest_rundirect(void *data, void *key){
        cli_putstr_P(PSTR("\r\n                     "));
        cli_putstr_P(PSTR("k = "));
        cli_hexdump(key,16);
@@ -64,7 +64,7 @@ void testrun_stdtest_rundirect(void* data, void* key){
        cli_putstr_P(PSTR("\r\n"));
 }
 
-void testrun_stdtest_runindirect(void* data, void* key){
+void testrun_stdtest_runindirect(void *data, void *key){
        noekeon_ctx_t ctx;
        cli_putstr_P(PSTR("\r\n                     "));
        cli_putstr_P(PSTR("k = "));