diff options
author | 2018-11-07 01:53:36 +0000 | |
---|---|---|
committer | 2018-11-07 01:53:36 +0000 | |
commit | d3b2bb0df303751bea51842b28c871abcbcb1034 (patch) | |
tree | 700ba67953eb969a9e2663fd7e643feb845abe47 /lib/libssl/ssl.h | |
parent | +interop (diff) | |
download | wireguard-openbsd-d3b2bb0df303751bea51842b28c871abcbcb1034.tar.xz wireguard-openbsd-d3b2bb0df303751bea51842b28c871abcbcb1034.zip |
Add TLSv1.3 cipher suites (with appropriate guards).
ok beck@ tb@
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 8d4fcc442ff..4c8328fb80b 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.160 2018/11/06 01:37:23 jsing Exp $ */ +/* $OpenBSD: ssl.h,v 1.161 2018/11/07 01:53:36 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -306,6 +306,9 @@ extern "C" { #define SSL_TXT_TLSV1 "TLSv1" #define SSL_TXT_TLSV1_1 "TLSv1.1" #define SSL_TXT_TLSV1_2 "TLSv1.2" +#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL) +#define SSL_TXT_TLSV1_3 "TLSv1.3" +#endif #define SSL_TXT_EXP "EXP" #define SSL_TXT_EXPORT "EXPORT" |