mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-21 10:57:39 +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 );
|
sha256_update( &ctx->accumulator, p, use_len );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
polarssl_zeroize( tmp, sizeof( tmp ) );
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue