diff options
author | jsing <> | 2018-11-07 01:53:36 +0000 |
---|---|---|
committer | jsing <> | 2018-11-07 01:53:36 +0000 |
commit | ce26c3410b909ac6a3b6467a194cd79210869e06 (patch) | |
tree | ed0c8f5291a5a12ae7b0215521012a3a6f80e62e /src/lib/libssl/ssl.h | |
parent | 6c76feec69da3c4ffea7496b04e0c18edd09d141 (diff) | |
download | openbsd-ce26c3410b909ac6a3b6467a194cd79210869e06.tar.gz openbsd-ce26c3410b909ac6a3b6467a194cd79210869e06.tar.bz2 openbsd-ce26c3410b909ac6a3b6467a194cd79210869e06.zip |
Add TLSv1.3 cipher suites (with appropriate guards).
ok beck@ tb@
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r-- | src/lib/libssl/ssl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 8d4fcc442f..4c8328fb80 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.160 2018/11/06 01:37:23 jsing Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.161 2018/11/07 01:53:36 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 | * |
@@ -306,6 +306,9 @@ extern "C" { | |||
306 | #define SSL_TXT_TLSV1 "TLSv1" | 306 | #define SSL_TXT_TLSV1 "TLSv1" |
307 | #define SSL_TXT_TLSV1_1 "TLSv1.1" | 307 | #define SSL_TXT_TLSV1_1 "TLSv1.1" |
308 | #define SSL_TXT_TLSV1_2 "TLSv1.2" | 308 | #define SSL_TXT_TLSV1_2 "TLSv1.2" |
309 | #if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL) | ||
310 | #define SSL_TXT_TLSV1_3 "TLSv1.3" | ||
311 | #endif | ||
309 | 312 | ||
310 | #define SSL_TXT_EXP "EXP" | 313 | #define SSL_TXT_EXP "EXP" |
311 | #define SSL_TXT_EXPORT "EXPORT" | 314 | #define SSL_TXT_EXPORT "EXPORT" |