mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 01:05:40 +01:00
aria: define P3 macro
This will allow to replace it with an optimised implementation later
This commit is contained in:
parent
f205a012b8
commit
cac5008b17
@ -91,6 +91,13 @@ static void mbedtls_zeroize( void *v, size_t n ) {
|
|||||||
*/
|
*/
|
||||||
#define ARIA_P2(x) (((x) >> 16) ^ ((x) << 16))
|
#define ARIA_P2(x) (((x) >> 16) ^ ((x) << 16))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* modify byte order: ( A B C D ) -> ( D C B A ), i.e. change endianness
|
||||||
|
*
|
||||||
|
* This is submatrix P3 in [1] Appendix B.1
|
||||||
|
*/
|
||||||
|
#define ARIA_P3(x) ARIA_P2( ARIA_P1 ( x ) )
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ARIA Affine Transform
|
* ARIA Affine Transform
|
||||||
* (a, b, c, d) = state in/out
|
* (a, b, c, d) = state in/out
|
||||||
@ -336,14 +343,14 @@ static void aria_rot128(uint32_t r[4], const uint32_t a[4],
|
|||||||
const uint8_t n2 = n1 ? 32 - n1 : 0; // reverse bit offset
|
const uint8_t n2 = n1 ? 32 - n1 : 0; // reverse bit offset
|
||||||
|
|
||||||
j = (n / 32) % 4; // initial word offset
|
j = (n / 32) % 4; // initial word offset
|
||||||
t = ARIA_P2( ARIA_P1( b[j] ) ); // big endian
|
t = ARIA_P3( b[j] ); // big endian
|
||||||
for( i = 0; i < 4; i++ )
|
for( i = 0; i < 4; i++ )
|
||||||
{
|
{
|
||||||
j = (j + 1) % 4; // get next word, big endian
|
j = (j + 1) % 4; // get next word, big endian
|
||||||
u = ARIA_P2( ARIA_P1( b[j] ) );
|
u = ARIA_P3( b[j] );
|
||||||
t <<= n1; // rotate
|
t <<= n1; // rotate
|
||||||
t |= u >> n2;
|
t |= u >> n2;
|
||||||
t = ARIA_P2( ARIA_P1( t ) ); // back to little endian
|
t = ARIA_P3( t ); // back to little endian
|
||||||
r[i] = a[i] ^ t; // store
|
r[i] = a[i] ^ t; // store
|
||||||
t = u; // move to next word
|
t = u; // move to next word
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user