mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 19:55:44 +01:00
Included test for integer underflow.
This commit is contained in:
parent
cbbfaba5a6
commit
5ed30c1920
@ -714,6 +714,10 @@ int mbedtls_rsa_rsaes_oaep_decrypt( mbedtls_rsa_context *ctx,
|
||||
*/
|
||||
hlen = mbedtls_md_get_size( md_info );
|
||||
|
||||
// checking for integer underflow
|
||||
if( 2 * hlen + 2 > ilen )
|
||||
return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
|
||||
|
||||
mbedtls_md_init( &md_ctx );
|
||||
mbedtls_md_setup( &md_ctx, md_info, 0 );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user