mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 16:35:41 +01:00
ARIA init and free
This commit is contained in:
parent
3c0b53b2b0
commit
6ba68d4a3b
@ -125,7 +125,7 @@
|
|||||||
ta = ARIA_FLIP2( ta ) ^ tc ^ rc; \
|
ta = ARIA_FLIP2( ta ) ^ tc ^ rc; \
|
||||||
tb = ARIA_FLIP2( rc ) ^ ARIA_FLIP1( rd ); \
|
tb = ARIA_FLIP2( rc ) ^ ARIA_FLIP1( rd ); \
|
||||||
tc ^= ARIA_FLIP2( ra ); \
|
tc ^= ARIA_FLIP2( ra ); \
|
||||||
rb ^= ta^ tb; \
|
rb ^= ta ^ tb; \
|
||||||
tb = ARIA_FLIP1( tb ) ^ ta; \
|
tb = ARIA_FLIP1( tb ) ^ ta; \
|
||||||
ra ^= ARIA_FLIP2( tb ); \
|
ra ^= ARIA_FLIP2( tb ); \
|
||||||
ta = ARIA_FLIP1( ta ); \
|
ta = ARIA_FLIP1( ta ); \
|
||||||
@ -478,7 +478,19 @@ int mbedtls_aria_crypt_ecb( mbedtls_aria_context *ctx,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void mbedtls_aria_init( mbedtls_aria_context *ctx )
|
||||||
|
{
|
||||||
|
memset( ctx, 0, sizeof( mbedtls_aria_context ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
void mbedtls_aria_free( mbedtls_aria_context *ctx )
|
||||||
|
{
|
||||||
|
if( ctx == NULL )
|
||||||
|
return;
|
||||||
|
|
||||||
|
// compiler can't remove this since this is not a static function
|
||||||
|
memset( ctx, 0, sizeof( mbedtls_aria_context ) );
|
||||||
|
}
|
||||||
|
|
||||||
#if defined(MBEDTLS_CIPHER_MODE_CBC)
|
#if defined(MBEDTLS_CIPHER_MODE_CBC)
|
||||||
/*
|
/*
|
||||||
@ -772,9 +784,8 @@ int mbedtls_aria_self_test( int verbose )
|
|||||||
uint8_t blk[16];
|
uint8_t blk[16];
|
||||||
mbedtls_aria_context ctx;
|
mbedtls_aria_context ctx;
|
||||||
|
|
||||||
#if (defined(MBEDTLS_CIPHER_MODE_CFB) || \
|
#if (defined(MBEDTLS_CIPHER_MODE_CFB) || defined(MBEDTLS_CIPHER_MODE_CTR))
|
||||||
defined(MBEDTLS_CIPHER_MODE_CTR))
|
size_t j;
|
||||||
size_t j;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined(MBEDTLS_CIPHER_MODE_CBC) || \
|
#if (defined(MBEDTLS_CIPHER_MODE_CBC) || \
|
||||||
|
Loading…
Reference in New Issue
Block a user