diff options
author | 2021-03-29 16:46:09 +0000 | |
---|---|---|
committer | 2021-03-29 16:46:09 +0000 | |
commit | 268dad53d6e6176ac2f0893130b94dd69e18f3ef (patch) | |
tree | a65b7a541b765dc697a54c9e507a2c946601a81b /lib/libssl/ssl_pkt.c | |
parent | Add regress coverage for TLSv1.2 record number increment. (diff) | |
download | wireguard-openbsd-268dad53d6e6176ac2f0893130b94dd69e18f3ef.tar.xz wireguard-openbsd-268dad53d6e6176ac2f0893130b94dd69e18f3ef.zip |
Move finished and peer finished to the handshake struct.
This moves the finish_md and peer_finish_md from the 'tmp' struct to the
handshake struct, renaming to finished and peer_finished in the process.
This also allows the remaining S3I(s) references to be removed from the
TLSv1.3 client and server.
ok inoguchi@ tb@
Diffstat (limited to 'lib/libssl/ssl_pkt.c')
-rw-r--r-- | lib/libssl/ssl_pkt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/ssl_pkt.c b/lib/libssl/ssl_pkt.c index a93acdfa7f6..a760f90a3a0 100644 --- a/lib/libssl/ssl_pkt.c +++ b/lib/libssl/ssl_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_pkt.c,v 1.39 2021/03/24 18:44:00 jsing Exp $ */ +/* $OpenBSD: ssl_pkt.c,v 1.40 2021/03/29 16:46:09 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1190,12 +1190,12 @@ ssl3_do_change_cipher_spec(SSL *s) } i = tls1_final_finish_mac(s, sender, slen, - S3I(s)->tmp.peer_finish_md); + S3I(s)->hs.peer_finished); if (i == 0) { SSLerror(s, ERR_R_INTERNAL_ERROR); return 0; } - S3I(s)->tmp.peer_finish_md_len = i; + S3I(s)->hs.peer_finished_len = i; return (1); } |