mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 09:35:39 +00:00
Fix debug print of explicit IV
The previous version attempted to write the explicit IV from the destination buffer before it has been written there. Signed-off-by: Hanno Becker <hanno.becker@arm.com>
This commit is contained in:
parent
7cca3589cb
commit
16bf0e2346
|
@ -853,8 +853,8 @@ int mbedtls_ssl_encrypt_buf( mbedtls_ssl_context *ssl,
|
||||||
MBEDTLS_SSL_DEBUG_BUF( 4, "IV used (internal)",
|
MBEDTLS_SSL_DEBUG_BUF( 4, "IV used (internal)",
|
||||||
iv, transform->ivlen );
|
iv, transform->ivlen );
|
||||||
MBEDTLS_SSL_DEBUG_BUF( 4, "IV used (transmitted)",
|
MBEDTLS_SSL_DEBUG_BUF( 4, "IV used (transmitted)",
|
||||||
data - dynamic_iv_len * dynamic_iv_is_explicit,
|
dynamic_iv,
|
||||||
dynamic_iv_len * dynamic_iv_is_explicit );
|
dynamic_iv_is_explicit ? dynamic_iv_len : 0 );
|
||||||
MBEDTLS_SSL_DEBUG_BUF( 4, "additional data used for AEAD",
|
MBEDTLS_SSL_DEBUG_BUF( 4, "additional data used for AEAD",
|
||||||
add_data, add_data_len );
|
add_data, add_data_len );
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "before encrypt: msglen = %d, "
|
MBEDTLS_SSL_DEBUG_MSG( 3, ( "before encrypt: msglen = %d, "
|
||||||
|
|
Loading…
Reference in a new issue