X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-hmac-sha256-test.c;h=7b552374db8ad55816e6345276da50e15f3bdd24;hb=cf1c79ef3fa4bb22f0cab28b2b6e958293aca739;hp=819ed5726eeeae14e9a8495ee4a9a3d45f1d5bff;hpb=c135a8edfcb616f3bbececfd970336bb013dd214;p=avr-crypto-lib.git diff --git a/test_src/main-hmac-sha256-test.c b/test_src/main-hmac-sha256-test.c index 819ed57..7b55237 100644 --- a/test_src/main-hmac-sha256-test.c +++ b/test_src/main-hmac-sha256-test.c @@ -29,6 +29,7 @@ #include "sha256.h" #include "hmac-sha256.h" +#include "cli.h" #include "nessie_mac_test.h" #include @@ -81,12 +82,14 @@ int main (void){ uart_putstr(algo_name); uart_putstr_P(PSTR(")\r\nloaded and running\r\n")); -restart: + PGM_P u = PSTR("nessie\0test\0"); + void_fpt v[] = {testrun_nessie_hmacsha256, testrun_nessie_hmacsha256}; + 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_hmacsha256(); - 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");