summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2020-01-22 15:47:22 +0000
committerjsing <>2020-01-22 15:47:22 +0000
commitbcda89289e2804a6f20cf7527671c9745f929e58 (patch)
tree1108aa572ec1515fb5e57ca2cad76f6f6230b16c /src/lib/libssl/ssl_locl.h
parentf778504a688f0d9ea7dee4104057a84f6e1e8871 (diff)
downloadopenbsd-bcda89289e2804a6f20cf7527671c9745f929e58.tar.gz
openbsd-bcda89289e2804a6f20cf7527671c9745f929e58.tar.bz2
openbsd-bcda89289e2804a6f20cf7527671c9745f929e58.zip
Wire up the TLSv1.3 server.
This currently only has enough code to handle fallback to the legacy TLS stack for TLSv1.2 or earlier, however allows for further development and testing. ok beck@
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/ssl_locl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 7936378213..1c60f10684 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.251 2020/01/22 13:06:20 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.252 2020/01/22 15:47:22 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 *
@@ -1078,6 +1078,7 @@ int ssl_cipher_is_permitted(const SSL_CIPHER *cipher, uint16_t min_ver,
1078 uint16_t max_ver); 1078 uint16_t max_ver);
1079 1079
1080const SSL_METHOD *tls_legacy_client_method(void); 1080const SSL_METHOD *tls_legacy_client_method(void);
1081const SSL_METHOD *tls_legacy_server_method(void);
1081 1082
1082const SSL_METHOD *dtls1_get_client_method(int ver); 1083const SSL_METHOD *dtls1_get_client_method(int ver);
1083const SSL_METHOD *dtls1_get_server_method(int ver); 1084const SSL_METHOD *dtls1_get_server_method(int ver);