From de9aea9cc14b09138a727b6b042d5e7bb3e43151 Mon Sep 17 00:00:00 2001 From: tb <> Date: Thu, 5 Dec 2024 19:29:08 +0000 Subject: Remove the undocumented DSA_is_prime() macro It aliases BN_is_prime(), which was removed in April 2023. makes sense to miod --- src/lib/libcrypto/dsa/dsa.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib/libcrypto/dsa/dsa.h b/src/lib/libcrypto/dsa/dsa.h index a0ef787a86..63e5cedb1c 100644 --- a/src/lib/libcrypto/dsa/dsa.h +++ b/src/lib/libcrypto/dsa/dsa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dsa.h,v 1.44 2024/03/02 09:33:14 tb Exp $ */ +/* $OpenBSD: dsa.h,v 1.45 2024/12/05 19:29:08 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -183,8 +183,6 @@ int DSA_print_fp(FILE *bp, const DSA *x, int off); * This is necessary for keys of size >= 3072. */ #define DSS_prime_checks 64 -#define DSA_is_prime(n, callback, cb_arg) \ - BN_is_prime(n, DSS_prime_checks, callback, NULL, cb_arg) #ifndef OPENSSL_NO_DH /* Convert DSA structure (key or just parameters) into DH structure -- cgit v1.2.3-55-g6feb