diff options
author | jsing <> | 2021-01-07 15:32:59 +0000 |
---|---|---|
committer | jsing <> | 2021-01-07 15:32:59 +0000 |
commit | a44b8f51b28515300b7d351485e371c07311a9f4 (patch) | |
tree | d58094850feafb23ea66396721d16b400c034196 /src/lib/libssl/ssl_locl.h | |
parent | 35e7c2f41633d153898933e5ba6cf0580ce70f26 (diff) | |
download | openbsd-a44b8f51b28515300b7d351485e371c07311a9f4.tar.gz openbsd-a44b8f51b28515300b7d351485e371c07311a9f4.tar.bz2 openbsd-a44b8f51b28515300b7d351485e371c07311a9f4.zip |
Move the read MAC key into the TLSv1.2 record layer.
ok inoguchi@ tb@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 312c18f7ca..5c646d2208 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_locl.h,v 1.310 2020/12/15 16:04:49 tb Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.311 2021/01/07 15:32:59 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -833,8 +833,6 @@ typedef struct ssl3_buffer_internal_st { | |||
833 | 833 | ||
834 | typedef struct ssl3_state_internal_st { | 834 | typedef struct ssl3_state_internal_st { |
835 | unsigned char read_sequence[SSL3_SEQUENCE_SIZE]; | 835 | unsigned char read_sequence[SSL3_SEQUENCE_SIZE]; |
836 | int read_mac_secret_size; | ||
837 | unsigned char read_mac_secret[EVP_MAX_MD_SIZE]; | ||
838 | unsigned char write_sequence[SSL3_SEQUENCE_SIZE]; | 836 | unsigned char write_sequence[SSL3_SEQUENCE_SIZE]; |
839 | 837 | ||
840 | SSL3_BUFFER_INTERNAL rbuf; /* read IO goes into here */ | 838 | SSL3_BUFFER_INTERNAL rbuf; /* read IO goes into here */ |