X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=noekeon.c;h=5508c29520ac1a50ee744ab9da59b34509b682ef;hb=a15d02c94b1ce1fc9861e654e96e0ee369fe08e9;hp=5ae3ec292b08add934061a6d2c078b5dec341e41;hpb=96ebafd201c9e8441c7677577b24aa402c1defc6;p=avr-crypto-lib.git diff --git a/noekeon.c b/noekeon.c index 5ae3ec2..5508c29 100644 --- a/noekeon.c +++ b/noekeon.c @@ -19,7 +19,7 @@ /* * author: Daniel Otte * email: daniel.otte@rub.de - * license: GPLv3 + * license: GPLv3 or later * * * @@ -29,7 +29,7 @@ #include #include #include "noekeon.h" -#include "uart.h" +// #include "uart.h" #define ROUND_NR 16 @@ -160,8 +160,8 @@ void noekeon_dec(void* buffer, void* key){ memcpy(dkey, key, 16); theta((uint32_t*)nullv, (uint32_t*)dkey); - uart_putstr_P(PSTR("\r\nTheta: ")); - uart_hexdump(dkey, 16); +// uart_putstr_P(PSTR("\r\nTheta: ")); +// uart_hexdump(dkey, 16); for(i=ROUND_NR-1; i>=0; --i){ rc = pgm_read_byte(rc_tab+i);