summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r--src/lib/libssl/tls13_internal.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h
index d711f1a58d..d53672dbfe 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.66 2020/04/28 20:30:40 jsing Exp $ */ 1/* $OpenBSD: tls13_internal.h,v 1.67 2020/04/28 20:37:22 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>
@@ -250,6 +250,8 @@ const EVP_MD *tls13_cipher_hash(const SSL_CIPHER *cipher);
250/* 250/*
251 * Legacy interfaces. 251 * Legacy interfaces.
252 */ 252 */
253int tls13_use_legacy_client(struct tls13_ctx *ctx);
254int tls13_use_legacy_server(struct tls13_ctx *ctx);
253int tls13_legacy_accept(SSL *ssl); 255int tls13_legacy_accept(SSL *ssl);
254int tls13_legacy_connect(SSL *ssl); 256int tls13_legacy_connect(SSL *ssl);
255int tls13_legacy_return_code(SSL *ssl, ssize_t ret); 257int tls13_legacy_return_code(SSL *ssl, ssize_t ret);
@@ -292,6 +294,11 @@ int tls13_legacy_shutdown(SSL *ssl);
292int tls13_handshake_msg_record(struct tls13_ctx *ctx); 294int tls13_handshake_msg_record(struct tls13_ctx *ctx);
293int tls13_handshake_perform(struct tls13_ctx *ctx); 295int tls13_handshake_perform(struct tls13_ctx *ctx);
294 296
297int tls13_client_init(struct tls13_ctx *ctx);
298int tls13_server_init(struct tls13_ctx *ctx);
299int tls13_client_connect(struct tls13_ctx *ctx);
300int tls13_server_accept(struct tls13_ctx *ctx);
301
295int tls13_client_hello_send(struct tls13_ctx *ctx, CBB *cbb); 302int tls13_client_hello_send(struct tls13_ctx *ctx, CBB *cbb);
296int tls13_client_hello_sent(struct tls13_ctx *ctx); 303int tls13_client_hello_sent(struct tls13_ctx *ctx);
297int tls13_client_hello_recv(struct tls13_ctx *ctx, CBS *cbs); 304int tls13_client_hello_recv(struct tls13_ctx *ctx, CBS *cbs);