mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-08-01 10:06:53 +03:00
PK rsa_verify: check signature length
This commit is contained in:
@ -62,7 +62,8 @@ static int rsa_verify_wrap( void *ctx,
|
||||
const unsigned char *hash, const md_info_t *md_info,
|
||||
const unsigned char *sig, size_t sig_len )
|
||||
{
|
||||
((void) sig_len);
|
||||
if( sig_len != ((rsa_context *) ctx)->len )
|
||||
return( POLARSSL_ERR_RSA_VERIFY_FAILED );
|
||||
|
||||
return( rsa_pkcs1_verify( (rsa_context *) ctx,
|
||||
RSA_PUBLIC, md_info->type, 0, hash, sig ) );
|
||||
|
Reference in New Issue
Block a user