From aa6fa26115ff2935d11f05c1b2a658343a2b5106 Mon Sep 17 00:00:00 2001 From: tb <> Date: Sat, 18 Jan 2025 10:53:04 +0000 Subject: Remove last uses of SSL_aDSS ok jsing --- src/lib/libssl/ssl_ciph.c | 13 +------------ src/lib/libssl/ssl_local.h | 3 +-- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/src/lib/libssl/ssl_ciph.c b/src/lib/libssl/ssl_ciph.c index 8f7345f068..45b9d09c10 100644 --- a/src/lib/libssl/ssl_ciph.c +++ b/src/lib/libssl/ssl_ciph.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_ciph.c,v 1.149 2024/08/31 12:46:55 jsing Exp $ */ +/* $OpenBSD: ssl_ciph.c,v 1.150 2025/01/18 10:53:04 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -218,14 +218,6 @@ static const SSL_CIPHER cipher_aliases[] = { .name = SSL_TXT_aRSA, .algorithm_auth = SSL_aRSA, }, - { - .name = SSL_TXT_aDSS, - .algorithm_auth = SSL_aDSS, - }, - { - .name = SSL_TXT_DSS, - .algorithm_auth = SSL_aDSS, - }, { .name = SSL_TXT_aNULL, .algorithm_auth = SSL_aNULL, @@ -1369,9 +1361,6 @@ SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len) case SSL_aRSA: au = "RSA"; break; - case SSL_aDSS: - au = "DSS"; - break; case SSL_aNULL: au = "None"; break; diff --git a/src/lib/libssl/ssl_local.h b/src/lib/libssl/ssl_local.h index 35d9ebae93..8c96796a63 100644 --- a/src/lib/libssl/ssl_local.h +++ b/src/lib/libssl/ssl_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_local.h,v 1.24 2025/01/17 22:39:42 tb Exp $ */ +/* $OpenBSD: ssl_local.h,v 1.25 2025/01/18 10:53:04 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -202,7 +202,6 @@ __BEGIN_HIDDEN_DECLS /* Bits for algorithm_auth (server authentication) */ #define SSL_aRSA 0x00000001L /* RSA auth */ -#define SSL_aDSS 0x00000002L /* DSS auth */ #define SSL_aNULL 0x00000004L /* no auth (i.e. use ADH or AECDH) */ #define SSL_aECDSA 0x00000040L /* ECDSA auth*/ #define SSL_aTLS1_3 0x00000400L /* TLSv1.3 authentication */ -- cgit v1.2.3-55-g6feb