diff options
Diffstat (limited to 'src/lib/libssl/ssl_lib.c')
-rw-r--r-- | src/lib/libssl/ssl_lib.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index 1b141b6e2c..a6bdfaa4a1 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_lib.c,v 1.209 2020/01/23 03:17:40 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_lib.c,v 1.210 2020/01/23 10:40:59 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 | * |
@@ -2006,6 +2006,9 @@ ssl_set_cert_masks(CERT *c, const SSL_CIPHER *cipher) | |||
2006 | mask_a |= SSL_aRSA; | 2006 | mask_a |= SSL_aRSA; |
2007 | 2007 | ||
2008 | mask_a |= SSL_aNULL; | 2008 | mask_a |= SSL_aNULL; |
2009 | mask_a |= SSL_aTLS1_3; | ||
2010 | |||
2011 | mask_k |= SSL_kTLS1_3; | ||
2009 | 2012 | ||
2010 | /* | 2013 | /* |
2011 | * An ECC certificate may be usable for ECDH and/or | 2014 | * An ECC certificate may be usable for ECDH and/or |