#include "memxor.h"
#include "cubehash.h"
#include "cubehash_rotates.h"
+#include "xchg.h"
#include <string.h>
#include <stdint.h>
/*
-• Add x_0jklm into x_1jklm modulo 232 , for each (j, k, l, m).
+• Add x_0jklm into x_1jklm modulo 2**32 , for each (j, k, l, m).
• Rotate x_0jklm upwards by 7 bits, for each (j, k, l, m).
• Swap x_00klm with x_01klm , for each (k, l, m).
• Xor x_1jklm into x_0jklm , for each (j, k, l, m).
• Swap x_1jk0m with x_1jk1m , for each (j, k, m).
-• Add x_0jklm into x_1jklm modulo 232 , for each (j, k, l, m).
+• Add x_0jklm into x_1jklm modulo 2**32 , for each (j, k, l, m).
• Rotate x_0jklm upwards by 11 bits, for each (j, k, l, m).
• Swap x_0j0lm with x_0j1lm , for each (j, l, m).
• Xor x_1jklm into x_0jklm , for each (j, k, l, m).
static void cubehash_round(cubehash_ctx_t* ctx){
uint8_t i;
- uint32_t t;
+ uint32_t t, t2;
for(i=0; i<16; ++i){
- ctx->a[i+16] += ctx->a[i];
- ctx->a[i] = rotate7left(ctx->a[i]);
+ ctx->a[i+16] += t = ctx->a[i];
+ ctx->a[i] = rotate7left(t);
}
- for(i=0; i<8; ++i){
- t = ctx->a[i];
- ctx->a[i] = ctx->a[i+8];
- ctx->a[i+8] = t;
+ xchg32_array(&(ctx->a[0]), &(ctx->a[8]), 8);
+ for(i=0; i<16; i+=4){
+ t = ctx->a[i+16];
+ t2 = ctx->a[i] ^= t;
+ ctx->a[i+16] = ctx->a[i+18] + t2;
+ ctx->a[i] = rotate11left(t2);
+ t2 = ctx->a[i+2] ^= ctx->a[i+18];
+ ctx->a[i+18] = t + t2;
+ ctx->a[i+2] = rotate11left(t2);
+ t = ctx->a[i+17];
+ t2 = ctx->a[i+1] ^= t;
+ ctx->a[i+17] = ctx->a[i+19] + t2;
+ ctx->a[i+1] = rotate11left(t2);
+ t2 = ctx->a[i+3] ^= ctx->a[i+19];
+ ctx->a[i+19] = t + t2;
+ ctx->a[i+3] = rotate11left(t2);
}
- for(i=16; i<4*4+16; i+=4){
- t = ctx->a[i];
- ctx->a[i-16] ^= t;
- ctx->a[i] = ctx->a[i+2] + ctx->a[i-16];
- ctx->a[i-16] = rotate11left(ctx->a[i-16]);
- ctx->a[i-14] ^= ctx->a[i+2];
- ctx->a[i+2] = t + ctx->a[i-14];
- ctx->a[i-14] = rotate11left(ctx->a[i-14]);
- t = ctx->a[i+1];
- ctx->a[i-15] ^= t;
- ctx->a[i+1] = ctx->a[i+3] + ctx->a[i-15];
- ctx->a[i-15] = rotate11left(ctx->a[i-15]);
- ctx->a[i-13] ^= ctx->a[i+3];
- ctx->a[i+3] = t + ctx->a[i-13];
- ctx->a[i-13] = rotate11left(ctx->a[i-13]);
- }
- for(i=0; i<4; ++i){
- t = ctx->a[i];
- ctx->a[i] = ctx->a[i+4];
- ctx->a[i+4] = t;
- }
- for(i=8; i<4+8; ++i){
- t = ctx->a[i];
- ctx->a[i] = ctx->a[i+4];
- ctx->a[i+4] = t;
- }
- for(i=16; i<16+16; i+=2){
- ctx->a[i-16] ^= t = ctx->a[i];
- ctx->a[i-15] ^= ctx->a[i] = ctx->a[i+1];
- ctx->a[i+1] = t;
+ xchg32_array(&(ctx->a[0]), &(ctx->a[4]), 4);
+ xchg32_array(&(ctx->a[8]), &(ctx->a[12]), 4);
+ for(i=0; i<16; i+=2){
+ ctx->a[i] ^= t = ctx->a[i+16];
+ ctx->a[i+1] ^= ctx->a[i+16] = ctx->a[i+17];
+ ctx->a[i+17] = t;
}
}
--- /dev/null
+/* xchg.S */
+/*
+ This file is part of the AVR-Crypto-Lib.
+ Copyright (C) 2006-2010 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/>.
+*/
+
+.global xchg32_array
+xchg32_array:
+ movw r26, r24
+ movw r30, r22
+1:
+ ld r24, X
+ ld r25, Z
+ st X+, r25
+ st Z+, r24
+ ld r24, X
+ ld r25, Z
+ st X+, r25
+ st Z+, r24
+ ld r24, X
+ ld r25, Z
+ st X+, r25
+ st Z+, r24
+ ld r24, X
+ ld r25, Z
+ st X+, r25
+ st Z+, r24
+ dec r20
+ brne 1b
+ ret
+
--- /dev/null
+/* xchg.h */
+/*
+ This file is part of the AVR-Crypto-Lib.
+ Copyright (C) 2010 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/>.
+*/
+
+#ifndef XCHG_H_
+#define XCHG_H_
+
+#include <stdint.h>
+
+void xchg32_array(void* a, void* b, uint8_t n);
+
+#endif /* XCHG_H_ */