mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Fix LMS zeroization using wrong sizeof type
Causing a buffer write out of bounds Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
@ -525,7 +525,7 @@ void mbedtls_lms_free_private( mbedtls_lms_private_t *ctx )
|
||||
mbedtls_free( ctx->ots_public_keys );
|
||||
}
|
||||
|
||||
mbedtls_platform_zeroize( ctx, sizeof( mbedtls_lms_public_t ) );
|
||||
mbedtls_platform_zeroize( ctx, sizeof( mbedtls_lms_private_t ) );
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user