diff options
author | jsing <> | 2020-02-05 16:42:29 +0000 |
---|---|---|
committer | jsing <> | 2020-02-05 16:42:29 +0000 |
commit | 64bc5fcd6f34580fce955a9b9bd9f202f56abd36 (patch) | |
tree | d27a0938ac2171e5add0e24ecda8201f4b926a07 /src/lib/libssl/tls13_internal.h | |
parent | 2ea9bc2f2eed516702797aac6d428221092613a3 (diff) | |
download | openbsd-64bc5fcd6f34580fce955a9b9bd9f202f56abd36.tar.gz openbsd-64bc5fcd6f34580fce955a9b9bd9f202f56abd36.tar.bz2 openbsd-64bc5fcd6f34580fce955a9b9bd9f202f56abd36.zip |
Pull the handshake message transcript code into its own function.
This is soon going to be used in the TLSv1.3 client code.
ok tb@
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r-- | src/lib/libssl/tls13_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h index 2c325fe914..76b1ebf914 100644 --- a/src/lib/libssl/tls13_internal.h +++ b/src/lib/libssl/tls13_internal.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls13_internal.h,v 1.59 2020/02/05 06:12:43 tb Exp $ */ | 1 | /* $OpenBSD: tls13_internal.h,v 1.60 2020/02/05 16:42:29 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> |
4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> |
@@ -287,6 +287,7 @@ int tls13_legacy_shutdown(SSL *ssl); | |||
287 | #define TLS13_MT_KEY_UPDATE 24 | 287 | #define TLS13_MT_KEY_UPDATE 24 |
288 | #define TLS13_MT_MESSAGE_HASH 254 | 288 | #define TLS13_MT_MESSAGE_HASH 254 |
289 | 289 | ||
290 | int tls13_handshake_msg_record(struct tls13_ctx *ctx); | ||
290 | int tls13_handshake_perform(struct tls13_ctx *ctx); | 291 | int tls13_handshake_perform(struct tls13_ctx *ctx); |
291 | 292 | ||
292 | int tls13_client_hello_send(struct tls13_ctx *ctx, CBB *cbb); | 293 | int tls13_client_hello_send(struct tls13_ctx *ctx, CBB *cbb); |