diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-11-08 13:13:31 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2018-02-19 15:29:36 +0100 |
commit | 1b12320a6938d327b07fc3c1e48ea6fe03d59a9b (patch) | |
tree | 9791f6bc4e1c559f949b7d12bdf58ae282bda02d /lib/handshake.c | |
parent | dcf2a8d3bd69ed0b994bed1753fe47a83366786e (diff) | |
download | gnutls-1b12320a6938d327b07fc3c1e48ea6fe03d59a9b.tar.gz |
session state: TLS1.2 and TLS1.3 state is stored as union
That is, to reduce memory usage as these protocol cannot be used
in parallel.
Relates: #281
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/handshake.c')
-rw-r--r-- | lib/handshake.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/handshake.c b/lib/handshake.c index 9b7c776cb8..179fcb8009 100644 --- a/lib/handshake.c +++ b/lib/handshake.c @@ -1714,8 +1714,8 @@ read_server_hello(gnutls_session_t session, return gnutls_assert_val(ret); ret = _tls13_derive_secret(session, DERIVED_LABEL, sizeof(DERIVED_LABEL)-1, - NULL, 0, session->key.proto.kshare.temp_secret, - session->key.proto.kshare.temp_secret); + NULL, 0, session->key.proto.tls13.temp_secret, + session->key.proto.tls13.temp_secret); if (ret < 0) return gnutls_assert_val(ret); @@ -2076,8 +2076,8 @@ int _gnutls_send_server_hello(gnutls_session_t session, int again) if (vers->tls13_sem) { ret = _tls13_derive_secret(session, DERIVED_LABEL, sizeof(DERIVED_LABEL)-1, - NULL, 0, session->key.proto.kshare.temp_secret, - session->key.proto.kshare.temp_secret); + NULL, 0, session->key.proto.tls13.temp_secret, + session->key.proto.tls13.temp_secret); if (ret < 0) { gnutls_assert(); goto fail; |