diff options
author | jsing <> | 2020-01-22 15:47:22 +0000 |
---|---|---|
committer | jsing <> | 2020-01-22 15:47:22 +0000 |
commit | 10c7e6c36bf0dc3cca36f953f4d1a51e178aa2de (patch) | |
tree | 1108aa572ec1515fb5e57ca2cad76f6f6230b16c /src/lib/libssl/ssl_locl.h | |
parent | 7655835d7e1b8fa812246e1e652a1747a4f67b32 (diff) | |
download | openbsd-10c7e6c36bf0dc3cca36f953f4d1a51e178aa2de.tar.gz openbsd-10c7e6c36bf0dc3cca36f953f4d1a51e178aa2de.tar.bz2 openbsd-10c7e6c36bf0dc3cca36f953f4d1a51e178aa2de.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 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 3 |
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 | ||
1080 | const SSL_METHOD *tls_legacy_client_method(void); | 1080 | const SSL_METHOD *tls_legacy_client_method(void); |
1081 | const SSL_METHOD *tls_legacy_server_method(void); | ||
1081 | 1082 | ||
1082 | const SSL_METHOD *dtls1_get_client_method(int ver); | 1083 | const SSL_METHOD *dtls1_get_client_method(int ver); |
1083 | const SSL_METHOD *dtls1_get_server_method(int ver); | 1084 | const SSL_METHOD *dtls1_get_server_method(int ver); |