summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_both.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2017-08-12 02:55:22 +0000
committerjsing <jsing@openbsd.org>2017-08-12 02:55:22 +0000
commit4722f98804ba189e411b7860ab9786cb0b63c135 (patch)
treec76f96056a58733d1e2e168f3bcc0ca9f3de85f2 /lib/libssl/ssl_both.c
parentClear the child pointer in CBB_cleanup(), so that we have fewer pointers (diff)
downloadwireguard-openbsd-4722f98804ba189e411b7860ab9786cb0b63c135.tar.xz
wireguard-openbsd-4722f98804ba189e411b7860ab9786cb0b63c135.zip
Remove support for DSS/DSA, since we removed the cipher suites a while
back. ok guenther@
Diffstat (limited to 'lib/libssl/ssl_both.c')
-rw-r--r--lib/libssl/ssl_both.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/ssl_both.c b/lib/libssl/ssl_both.c
index 4a724560f24..17f93f551be 100644
--- a/lib/libssl/ssl_both.c
+++ b/lib/libssl/ssl_both.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_both.c,v 1.9 2017/05/07 04:22:24 beck Exp $ */
+/* $OpenBSD: ssl_both.c,v 1.10 2017/08/12 02:55:22 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -568,8 +568,6 @@ ssl_cert_type(X509 *x, EVP_PKEY *pkey)
i = pk->type;
if (i == EVP_PKEY_RSA) {
ret = SSL_PKEY_RSA_ENC;
- } else if (i == EVP_PKEY_DSA) {
- ret = SSL_PKEY_DSA_SIGN;
} else if (i == EVP_PKEY_EC) {
ret = SSL_PKEY_ECC;
} else if (i == NID_id_GostR3410_2001 ||