From fad09b90be5a30598349a06adfd7574ef7264599 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sat, 12 Aug 2017 02:55:22 +0000 Subject: Remove support for DSS/DSA, since we removed the cipher suites a while back. ok guenther@ --- src/lib/libssl/s3_lib.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/lib/libssl/s3_lib.c') diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c index ad627d10d8..3a11d62893 100644 --- a/src/lib/libssl/s3_lib.c +++ b/src/lib/libssl/s3_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_lib.c,v 1.156 2017/08/11 17:54:41 jsing Exp $ */ +/* $OpenBSD: s3_lib.c,v 1.157 2017/08/12 02:55:22 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -2460,14 +2460,10 @@ ssl3_get_req_cert_types(SSL *s, CBB *cbb) if ((alg_k & SSL_kDHE) != 0) { if (!CBB_add_u8(cbb, SSL3_CT_RSA_FIXED_DH)) return 0; - if (!CBB_add_u8(cbb, SSL3_CT_DSS_FIXED_DH)) - return 0; } if (!CBB_add_u8(cbb, SSL3_CT_RSA_SIGN)) return 0; - if (!CBB_add_u8(cbb, SSL3_CT_DSS_SIGN)) - return 0; /* * ECDSA certs can be used with RSA cipher suites as well -- cgit v1.2.3-55-g6feb