diff options
author | 2021-01-07 15:32:59 +0000 | |
---|---|---|
committer | 2021-01-07 15:32:59 +0000 | |
commit | b77c9477f4364ba51c257a6b8647cfc3814e2604 (patch) | |
tree | 7fb60ae8e34dba82badff3c64487ca8384a18970 /lib/libssl/ssl_locl.h | |
parent | sleep(3): don't bypass nanosleep(2) if seconds is zero (diff) | |
download | wireguard-openbsd-b77c9477f4364ba51c257a6b8647cfc3814e2604.tar.xz wireguard-openbsd-b77c9477f4364ba51c257a6b8647cfc3814e2604.zip |
Move the read MAC key into the TLSv1.2 record layer.
ok inoguchi@ tb@
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 312c18f7ca2..5c646d2208d 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.310 2020/12/15 16:04:49 tb Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.311 2021/01/07 15:32:59 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -833,8 +833,6 @@ typedef struct ssl3_buffer_internal_st { typedef struct ssl3_state_internal_st { unsigned char read_sequence[SSL3_SEQUENCE_SIZE]; - int read_mac_secret_size; - unsigned char read_mac_secret[EVP_MAX_MD_SIZE]; unsigned char write_sequence[SSL3_SEQUENCE_SIZE]; SSL3_BUFFER_INTERNAL rbuf; /* read IO goes into here */ |