mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05: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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user