summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2022-07-22 19:54:46 +0000
committerjsing <>2022-07-22 19:54:46 +0000
commit62ec4b94c9b1942d04a7969d9eb9b49418c53b28 (patch)
tree2334189bf40e4de830827fcec28cafccf24f4c04 /src/lib/libssl/ssl_locl.h
parent3890176708c6f990b2e0bc4a469efc1eab093c1e (diff)
downloadopenbsd-62ec4b94c9b1942d04a7969d9eb9b49418c53b28.tar.gz
openbsd-62ec4b94c9b1942d04a7969d9eb9b49418c53b28.tar.bz2
openbsd-62ec4b94c9b1942d04a7969d9eb9b49418c53b28.zip
Convert TLS transcript from BUF_MEM to tls_buffer.
ok beck@ tb@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 34fb5815a9..7623daccf1 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.415 2022/07/20 13:43:33 tb Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.416 2022/07/22 19:54:46 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 *
@@ -1181,7 +1181,7 @@ typedef struct ssl3_state_st {
1181 const unsigned char *wpend_buf; 1181 const unsigned char *wpend_buf;
1182 1182
1183 /* Transcript of handshake messages that have been sent and received. */ 1183 /* Transcript of handshake messages that have been sent and received. */
1184 BUF_MEM *handshake_transcript; 1184 struct tls_buffer *handshake_transcript;
1185 1185
1186 /* Rolling hash of handshake messages. */ 1186 /* Rolling hash of handshake messages. */
1187 EVP_MD_CTX *handshake_hash; 1187 EVP_MD_CTX *handshake_hash;