mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
Fix overflow in LMS context init
Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
@ -506,7 +506,7 @@ static int get_merkle_path( mbedtls_lms_private_t *ctx,
|
||||
|
||||
void mbedtls_lms_init_private( mbedtls_lms_private_t *ctx )
|
||||
{
|
||||
mbedtls_platform_zeroize( ctx, sizeof( mbedtls_lms_public_t ) ) ;
|
||||
mbedtls_platform_zeroize( ctx, sizeof( mbedtls_lms_private_t ) ) ;
|
||||
}
|
||||
|
||||
void mbedtls_lms_free_private( mbedtls_lms_private_t *ctx )
|
||||
|
Reference in New Issue
Block a user