X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=noekeon.c;h=f48d1e6a9b282b4da6a038a356495087d57ff6da;hb=02ac3b653f3a11f284cc1a0cb0e983575f2f431b;hp=8a4c23a8c63e5055cbb1a6608be494e2d736b409;hpb=00b7eb605c2114f86b75d78954f0fd02902acb4c;p=avr-crypto-lib.git diff --git a/noekeon.c b/noekeon.c index 8a4c23a..f48d1e6 100644 --- a/noekeon.c +++ b/noekeon.c @@ -1,6 +1,6 @@ /* noekeon.c */ /* - This file is part of the Crypto-avr-lib/microcrypt-lib. + This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -32,7 +32,7 @@ #include #endif #include "noekeon.h" -// #include "uart.h" +// #include "cli.h" #define ROUND_NR 16 @@ -172,8 +172,8 @@ void noekeon_dec(void* buffer, const void* key){ changendian(dkey); theta((uint32_t*)nullv, (uint32_t*)dkey); -// uart_putstr_P(PSTR("\r\nTheta: ")); -// uart_hexdump(dkey, 16); +// cli_putstr_P(PSTR("\r\nTheta: ")); +// cli_hexdump(dkey, 16); for(i=ROUND_NR-1; i>=0; --i){ #ifdef __AVR__