Remove assertion on local nonce buffer size

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron 2021-12-07 10:45:00 +01:00
parent 0118627013
commit 0b4d12313a

View file

@ -3893,10 +3893,6 @@ psa_status_t psa_aead_generate_nonce( psa_aead_operation_t *operation,
goto exit;
}
#if defined(assert)
assert( required_nonce_size <= sizeof( local_nonce ) );
#endif
status = psa_generate_random( local_nonce, required_nonce_size );
if( status != PSA_SUCCESS )
goto exit;