diff options
author | jsing <> | 2020-07-07 19:24:23 +0000 |
---|---|---|
committer | jsing <> | 2020-07-07 19:24:23 +0000 |
commit | a61f9f14c0b9e8d1dff514c4937c7c2167ebb243 (patch) | |
tree | cfbc87ac8ef53c1ad713297654a10336f815a978 /src/lib/libssl/ssl_locl.h | |
parent | 8f3f3991023702d597728be7e37b1e46b3ad7e46 (diff) | |
download | openbsd-a61f9f14c0b9e8d1dff514c4937c7c2167ebb243.tar.gz openbsd-a61f9f14c0b9e8d1dff514c4937c7c2167ebb243.tar.bz2 openbsd-a61f9f14c0b9e8d1dff514c4937c7c2167ebb243.zip |
Enable TLSv1.3 for the generic TLS_method().
This can be done now that we have both TLSv1.3 client and server.
ok beck@ inoguchi@ tb@
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 bf1f846d13..f7a8b0786d 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.280 2020/06/06 01:40:09 beck Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.281 2020/07/07 19:24:23 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 | * |
@@ -1104,6 +1104,7 @@ int ssl_downgrade_max_version(SSL *s, uint16_t *max_ver); | |||
1104 | int ssl_cipher_is_permitted(const SSL_CIPHER *cipher, uint16_t min_ver, | 1104 | int ssl_cipher_is_permitted(const SSL_CIPHER *cipher, uint16_t min_ver, |
1105 | uint16_t max_ver); | 1105 | uint16_t max_ver); |
1106 | 1106 | ||
1107 | const SSL_METHOD *tls_legacy_method(void); | ||
1107 | const SSL_METHOD *tls_legacy_client_method(void); | 1108 | const SSL_METHOD *tls_legacy_client_method(void); |
1108 | const SSL_METHOD *tls_legacy_server_method(void); | 1109 | const SSL_METHOD *tls_legacy_server_method(void); |
1109 | 1110 | ||