X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=bmw%2Fbmw_small.c;h=349ccf8f2c67359f9a856988e1a714f676d6d4a5;hp=9f9393562e42fd5a3ef789f866b70ed4e4c123d6;hb=3d99e4ba447ef04801609c5459b7c0c332ae332f;hpb=45ad29acafe8ee17f7b1bd5b933a0e04cd51c94e diff --git a/bmw/bmw_small.c b/bmw/bmw_small.c index 9f93935..349ccf8 100644 --- a/bmw/bmw_small.c +++ b/bmw/bmw_small.c @@ -28,6 +28,7 @@ #include #include #include +#include "memxor.h" #include "bmw_small.h" @@ -430,7 +431,7 @@ void bmw_small_f1(uint32_t* q, const void* m, const void* h){ } static -void bmw_small_f2(uint32_t* h, const uint32_t* q, const void* m){ +void bmw_small_f2(uint32_t* h, uint32_t* q, const void* m){ uint32_t xl=0, xh; uint8_t i; for(i=16;i<24;++i){ @@ -462,6 +463,7 @@ void bmw_small_f2(uint32_t* h, const uint32_t* q, const void* m){ h[8+i] ^= xh ^ q[24+i]; h[8+i] += ROTL32(h[(4+i)%8],i+9); } +/* h[ 8] += SHL32(xl, 8) ^ q[23] ^ q[ 8]; h[ 9] += SHR32(xl, 6) ^ q[16] ^ q[ 9]; h[10] += SHL32(xl, 6) ^ q[17] ^ q[10]; @@ -470,6 +472,18 @@ void bmw_small_f2(uint32_t* h, const uint32_t* q, const void* m){ h[13] += SHR32(xl, 4) ^ q[20] ^ q[13]; h[14] += SHR32(xl, 7) ^ q[21] ^ q[14]; h[15] += SHR32(xl, 2) ^ q[22] ^ q[15]; +*/ + memxor(q+9, q+16, 7*4); + q[8] ^= q[23]; + h[ 8] += SHL32(xl, 8) ^ q[ 8]; + h[ 9] += SHR32(xl, 6) ^ q[ 9]; + h[10] += SHL32(xl, 6) ^ q[10]; + h[11] += SHL32(xl, 4) ^ q[11]; + h[12] += SHR32(xl, 3) ^ q[12]; + h[13] += SHR32(xl, 4) ^ q[13]; + h[14] += SHR32(xl, 7) ^ q[14]; + h[15] += SHR32(xl, 2) ^ q[15]; + } void bmw_small_nextBlock(bmw_small_ctx_t* ctx, const void* block){