X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-norx-test.c;h=d8378dd1683fe792abd570af41f06a5859bafd57;hp=27e95979a282d175f47dbd9721af7d4090310fce;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=f63427e84c047aafe16f6ab3b5452d4d2993241d diff --git a/test_src/main-norx-test.c b/test_src/main-norx-test.c index 27e9597..d8378dd 100644 --- a/test_src/main-norx-test.c +++ b/test_src/main-norx-test.c @@ -1,7 +1,7 @@ /* main-norx-test.c */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2006-2014 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 @@ -21,7 +21,7 @@ /* main-arcfour-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 @@ -56,6 +56,7 @@ char *algo_name = "norx"; #define DUMP(x) do { printf("%s", "\n\n" #x ":"); \ cli_hexdump_block((x), sizeof(x), 4, 16); } while (0) +#if 0 void g32(uint32_t *(a[4])); void f32(norx32_ctx_t *ctx); @@ -96,6 +97,7 @@ void testrun_f32(void) ctx.r = 8; f32(&ctx); } +#endif void testrun_norx32(void) { @@ -161,8 +163,8 @@ const char echo_str[] PROGMEM = "echo"; const cmdlist_entry_t cmdlist[] PROGMEM = { // { nessie_str, NULL, NULL }, { test_str, NULL, testrun_norx32}, - { ftest_str, NULL, testrun_f32}, - { gtest_str, NULL, testrun_g32}, +// { ftest_str, NULL, testrun_f32}, +// { gtest_str, NULL, testrun_g32}, // { performance_str, NULL, testrun_performance_arcfour}, { echo_str, (void*)1, (void_fpt)echo_ctrl}, { NULL, NULL, NULL}