diff options
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r-- | src/lib/libssl/tls13_internal.h | 9 |
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 | */ |
253 | int tls13_use_legacy_client(struct tls13_ctx *ctx); | ||
254 | int tls13_use_legacy_server(struct tls13_ctx *ctx); | ||
253 | int tls13_legacy_accept(SSL *ssl); | 255 | int tls13_legacy_accept(SSL *ssl); |
254 | int tls13_legacy_connect(SSL *ssl); | 256 | int tls13_legacy_connect(SSL *ssl); |
255 | int tls13_legacy_return_code(SSL *ssl, ssize_t ret); | 257 | int tls13_legacy_return_code(SSL *ssl, ssize_t ret); |
@@ -292,6 +294,11 @@ int tls13_legacy_shutdown(SSL *ssl); | |||
292 | int tls13_handshake_msg_record(struct tls13_ctx *ctx); | 294 | int tls13_handshake_msg_record(struct tls13_ctx *ctx); |
293 | int tls13_handshake_perform(struct tls13_ctx *ctx); | 295 | int tls13_handshake_perform(struct tls13_ctx *ctx); |
294 | 296 | ||
297 | int tls13_client_init(struct tls13_ctx *ctx); | ||
298 | int tls13_server_init(struct tls13_ctx *ctx); | ||
299 | int tls13_client_connect(struct tls13_ctx *ctx); | ||
300 | int tls13_server_accept(struct tls13_ctx *ctx); | ||
301 | |||
295 | int tls13_client_hello_send(struct tls13_ctx *ctx, CBB *cbb); | 302 | int tls13_client_hello_send(struct tls13_ctx *ctx, CBB *cbb); |
296 | int tls13_client_hello_sent(struct tls13_ctx *ctx); | 303 | int tls13_client_hello_sent(struct tls13_ctx *ctx); |
297 | int tls13_client_hello_recv(struct tls13_ctx *ctx, CBS *cbs); | 304 | int tls13_client_hello_recv(struct tls13_ctx *ctx, CBS *cbs); |