diff options
author | Matt Caswell <matt@openssl.org> | 2022-11-01 16:54:30 +0100 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2022-11-14 08:51:17 +0100 |
commit | 1e42708e175f1453bd12f4632fbc0c61bade4e81 (patch) | |
tree | 9b0c900f8d70898e86d81bea83c466b39db69fd7 /ssl/ssl_local.h | |
parent | Remove the read_iv/write_iv fields from SSL_CONNECTION (diff) | |
download | openssl-1e42708e175f1453bd12f4632fbc0c61bade4e81.tar.xz openssl-1e42708e175f1453bd12f4632fbc0c61bade4e81.zip |
Remove references to read_mac_secret and write_mac_secret
They are no longer used and can be removed.
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19586)
Diffstat (limited to 'ssl/ssl_local.h')
-rw-r--r-- | ssl/ssl_local.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h index cc1239287c..50e3b65372 100644 --- a/ssl/ssl_local.h +++ b/ssl/ssl_local.h @@ -1296,10 +1296,6 @@ struct ssl_connection_st { struct { long flags; - size_t read_mac_secret_size; - unsigned char read_mac_secret[EVP_MAX_MD_SIZE]; - size_t write_mac_secret_size; - unsigned char write_mac_secret[EVP_MAX_MD_SIZE]; unsigned char server_random[SSL3_RANDOM_SIZE]; unsigned char client_random[SSL3_RANDOM_SIZE]; |