]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-present-test.c
turning on software flow control for uart
[avr-crypto-lib.git] / test_src / main-present-test.c
index 3a08c120fe0efa2b8522eec8966c3f0a7807a92f..799d4687baf3d25f5515c8069f0a319bb9a4547a 100644 (file)
@@ -1,7 +1,7 @@
 /* main-present-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
@@ -31,9 +31,9 @@
 #include "bcal_present80.h"
 #include "bcal_present128.h"
 
-charalgo_name = "Present";
+char *algo_name = "Present";
 
-const bcdesc_tconst algolist[] PROGMEM = {
+const bcdesc_t *const algolist[] PROGMEM = {
        (bcdesc_t*)&present80_desc,
        (bcdesc_t*)&present128_desc,
        NULL
@@ -45,7 +45,7 @@ void testrun_nessie_present(void){
        bcal_nessie_multiple(algolist);
 }
 
-void testrun_selfenc(uint8_t* key, uint8_t* buffer){
+void testrun_selfenc(uint8_t *key, uint8_t *buffer){
 
        present80_ctx_t ctx;
        cli_putstr_P(PSTR("\r\nkey   : "));
@@ -62,7 +62,7 @@ void testrun_selfenc(uint8_t* key, uint8_t* buffer){
        cli_putstr_P(PSTR("\r\n"));
 }
 
-void testrun_selfenc_128(uint8_t* key, uint8_t* buffer){
+void testrun_selfenc_128(uint8_t *key, uint8_t *buffer){
 
        present128_ctx_t ctx;
        cli_putstr_P(PSTR("\r\nkey   : "));
@@ -78,7 +78,7 @@ void testrun_selfenc_128(uint8_t* key, uint8_t* buffer){
        cli_hexdump(buffer, 8);
        cli_putstr_P(PSTR("\r\n"));
 }
-// void present_key_test(const uint8_tkey);
+// void present_key_test(const uint8_t *key);
 
 
 void testrun_self_present(void){
@@ -141,9 +141,6 @@ const cmdlist_entry_t cmdlist[] PROGMEM = {
 int main(void) {
        main_setup();
 
-       shavs_algolist=(hfdesc_t**)algolist;
-       shavs_algo=(hfdesc_t*)&sha256_desc;
-
        for(;;){
                welcome_msg(algo_name);
                cmd_interface(cmdlist);