mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 17:15:38 +01:00
ARIA init and free
This commit is contained in:
parent
3c0b53b2b0
commit
6ba68d4a3b
@ -478,7 +478,19 @@ int mbedtls_aria_crypt_ecb( mbedtls_aria_context *ctx,
|
||||
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)
|
||||
/*
|
||||
@ -772,8 +784,7 @@ int mbedtls_aria_self_test( int verbose )
|
||||
uint8_t blk[16];
|
||||
mbedtls_aria_context ctx;
|
||||
|
||||
#if (defined(MBEDTLS_CIPHER_MODE_CFB) || \
|
||||
defined(MBEDTLS_CIPHER_MODE_CTR))
|
||||
#if (defined(MBEDTLS_CIPHER_MODE_CFB) || defined(MBEDTLS_CIPHER_MODE_CTR))
|
||||
size_t j;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user