X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-arcfour-test.c;h=b5e909e9aef89cf8c562c2e455025dc30af529d4;hb=7cd0bb77cb76ef7c45b41fd33ca364ddb89ec1ad;hp=7ebe5277b9db008026b693f2657dd9b9cbca1edc;hpb=c58f43febaefd188708dca010198629c0935728c;p=avr-crypto-lib.git diff --git a/test_src/main-arcfour-test.c b/test_src/main-arcfour-test.c index 7ebe527..b5e909e 100644 --- a/test_src/main-arcfour-test.c +++ b/test_src/main-arcfour-test.c @@ -26,9 +26,12 @@ #include "uart.h" #include "debug.h" -#include "arcfour.h" +#include #include "nessie_stream_test.h" +#include "cli.h" +#include "performance_test.h" +#include #include #include @@ -56,15 +59,31 @@ void testrun_nessie_arcfour(void){ } void testrun_performance_arcfour(void){ - nessie_stream_ctx.outsize_b = 8; /* actually unused */ - nessie_stream_ctx.keysize_b = 128; /* this is theone we have refrence vectors for */ - nessie_stream_ctx.ivsize_b = (uint16_t)-1; - nessie_stream_ctx.name = cipher_name; - nessie_stream_ctx.ctx_size_B = sizeof(arcfour_ctx_t); - nessie_stream_ctx.cipher_genctx = (nessie_stream_genctx_fpt)arcfour_genctx_dummy; - nessie_stream_ctx.cipher_enc = (nessie_stream_genenc_fpt)arcfour_gen; + uint64_t t; + char str[16]; + uint8_t key[16]; + arcfour_ctx_t ctx; - nessie_stream_run(); + calibrateTimer(); + print_overhead(); + + memset(key, 0, 16); + + startTimer(1); + arcfour_init(key, 16, &ctx); + t = stopTimer(); + uart_putstr_P(PSTR("\r\n\tctx-gen time: ")); + ultoa((unsigned long)t, str, 10); + uart_putstr(str); + + startTimer(1); + arcfour_gen(&ctx); + t = stopTimer(); + uart_putstr_P(PSTR("\r\n\tencrypt time: ")); + ultoa((unsigned long)t, str, 10); + uart_putstr(str); + + uart_putstr_P(PSTR("\r\n")); } @@ -75,18 +94,21 @@ void testrun_performance_arcfour(void){ int main (void){ char str[20]; DEBUG_INIT(); - uart_putstr("\r\n"); - + uart_putstr_P(PSTR("\r\n\r\nCrypto-VS (")); uart_putstr(cipher_name); uart_putstr_P(PSTR(")\r\nloaded and running\r\n")); -restart: + PGM_P u = PSTR("nessie\0test\0performance\0"); + void_fpt v[] = {testrun_nessie_arcfour, + testrun_nessie_arcfour, + testrun_performance_arcfour}; + while(1){ - if (!getnextwordn(str,20)) {DEBUG_S("DBG: W1\r\n"); goto error;} - if (strcmp(str, "nessie")) {DEBUG_S("DBG: 1b\r\n"); goto error;} - testrun_nessie_arcfour(); - goto restart; + if (!getnextwordn(str,20)){DEBUG_S("DBG: W1\r\n"); goto error;} + if(execcommand_d0_P(str, u, v)<0){ + uart_putstr_P(PSTR("\r\nunknown command\r\n")); + } continue; error: uart_putstr("ERROR\r\n");