mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-19 03:27:40 +00:00
Zeroize tmp buffer in entropy_update()
This commit is contained in:
parent
af134da17e
commit
1bfa46a456
|
@ -166,6 +166,8 @@ static int entropy_update( entropy_context *ctx, unsigned char source_id,
|
|||
sha256_update( &ctx->accumulator, p, use_len );
|
||||
#endif
|
||||
|
||||
polarssl_zeroize( tmp, sizeof( tmp ) );
|
||||
|
||||
return( 0 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue