mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-24 23:20:59 +00:00
RSA: wipe more stack buffers
MGF mask and PSS salt are not highly sensitive, but wipe them anyway for good hygiene.
This commit is contained in:
parent
213aec8688
commit
73e7f4c0ee
|
@ -492,6 +492,8 @@ static void mgf_mask( unsigned char *dst, size_t dlen, unsigned char *src,
|
|||
|
||||
dlen -= use_len;
|
||||
}
|
||||
|
||||
polarssl_zeroize( mask, sizeof( mask ) );
|
||||
}
|
||||
#endif /* POLARSSL_PKCS1_V21 */
|
||||
|
||||
|
@ -1011,6 +1013,7 @@ int rsa_rsassa_pss_sign( rsa_context *ctx,
|
|||
if( ( ret = md_init_ctx( &md_ctx, md_info ) ) != 0 )
|
||||
{
|
||||
md_free( &md_ctx );
|
||||
/* No need to zeroize salt: we didn't use it. */
|
||||
return( ret );
|
||||
}
|
||||
|
||||
|
@ -1021,6 +1024,7 @@ int rsa_rsassa_pss_sign( rsa_context *ctx,
|
|||
md_update( &md_ctx, hash, hashlen );
|
||||
md_update( &md_ctx, salt, slen );
|
||||
md_finish( &md_ctx, p );
|
||||
polarssl_zeroize( salt, sizeof( salt ) );
|
||||
|
||||
// Compensate for boundary condition when applying mask
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue