Save Hello random bytes for later use
This commit is contained in:
parent
ddf72a1cf6
commit
96fb0ee9cf
2 changed files with 13 additions and 1 deletions
|
@ -1046,13 +1046,19 @@ static int ssl_populate_transform( mbedtls_ssl_transform *transform,
|
|||
(void) ssl;
|
||||
#endif
|
||||
|
||||
/* Copy info about negotiated version and extensions */
|
||||
/*
|
||||
* Some data just needs copying into the structure
|
||||
*/
|
||||
#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) && \
|
||||
defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
|
||||
transform->encrypt_then_mac = encrypt_then_mac;
|
||||
#endif
|
||||
transform->minor_ver = minor_ver;
|
||||
|
||||
#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
|
||||
memcpy( transform->randbytes, randbytes, sizeof( transform->randbytes ) );
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Get various info structures
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue