]> git.cryptolib.org Git - avr-crypto-lib.git/commitdiff
fixing bug in noekeon.c
authorbg <bg@b1d182e4-1ff8-0310-901f-bddb46175740>
Tue, 30 Dec 2008 13:46:17 +0000 (13:46 +0000)
committerbg <bg@b1d182e4-1ff8-0310-901f-bddb46175740>
Tue, 30 Dec 2008 13:46:17 +0000 (13:46 +0000)
noekeon.c
twister-big.c

index f5f52994b8e04681cfa96db2d89fc8ab225f696f..8a4c23a8c63e5055cbb1a6608be494e2d736b409 100644 (file)
--- a/noekeon.c
+++ b/noekeon.c
@@ -93,9 +93,9 @@ void noekeon_round(uint32_t* key, uint32_t* state, uint8_t const1, uint8_t const
        ((uint8_t*)state)[RC_POS] ^= const1;
        theta(key, state);
        ((uint8_t*)state)[RC_POS] ^= const2;
+       pi1(state);
        gamma(state);
        pi2(state);
-       pi1(state);
 }
 
 uint8_t rc_tab[]
index 5139bdc211021d1c75d791691c60d6302a11e4b1..b0a6fd30e70144a7cecddfe770d0fb205e0575e2 100644 (file)
@@ -1,4 +1,21 @@
 /* twister-big.c */
+/*
+    This file is part of the Crypto-avr-lib/microcrypt-lib.
+    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+
+    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
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include <stdint.h>
 #include <string.h>