summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/hidden/openssl/dsa.h
diff options
context:
space:
mode:
authortb <>2024-03-02 09:33:14 +0000
committertb <>2024-03-02 09:33:14 +0000
commitdd733fbf4aedf12a61eb3281cf9aba872ad4bf86 (patch)
tree6a1f802b5baf968b2a0d8d4f07f71fcb1917e309 /src/lib/libcrypto/hidden/openssl/dsa.h
parentabe96e60083ddd83f68f68979348706259296fab (diff)
downloadopenbsd-dd733fbf4aedf12a61eb3281cf9aba872ad4bf86.tar.gz
openbsd-dd733fbf4aedf12a61eb3281cf9aba872ad4bf86.tar.bz2
openbsd-dd733fbf4aedf12a61eb3281cf9aba872ad4bf86.zip
Remove DSA_generate_parameters
This was deprecated in 0.9.8 and used until recently by rust-openssl and by keynote (keynote has the excuse that it was written before the deprecation). Fortunately Paul Kehrer fixed this in rust-openssl, so we can garbage collect this turd. (It was replaced with the less ergonomic DSA_generate_parameters_ex() to expose a new fancy way of displaying dots, stars and pluses on key generation). ok jsing
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl/dsa.h')
-rw-r--r--src/lib/libcrypto/hidden/openssl/dsa.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/dsa.h b/src/lib/libcrypto/hidden/openssl/dsa.h
index b2b0058cb9..40597abb63 100644
--- a/src/lib/libcrypto/hidden/openssl/dsa.h
+++ b/src/lib/libcrypto/hidden/openssl/dsa.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: dsa.h,v 1.1 2023/07/08 14:28:15 beck Exp $ */ 1/* $OpenBSD: dsa.h,v 1.2 2024/03/02 09:33:14 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2023 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2023 Bob Beck <beck@openbsd.org>
4 * 4 *
@@ -61,7 +61,6 @@ LCRYPTO_USED(d2i_DSAPrivateKey);
61LCRYPTO_USED(i2d_DSAPrivateKey); 61LCRYPTO_USED(i2d_DSAPrivateKey);
62LCRYPTO_USED(d2i_DSAparams); 62LCRYPTO_USED(d2i_DSAparams);
63LCRYPTO_USED(i2d_DSAparams); 63LCRYPTO_USED(i2d_DSAparams);
64LCRYPTO_USED(DSA_generate_parameters);
65LCRYPTO_USED(DSA_generate_parameters_ex); 64LCRYPTO_USED(DSA_generate_parameters_ex);
66LCRYPTO_USED(DSA_generate_key); 65LCRYPTO_USED(DSA_generate_key);
67LCRYPTO_USED(DSAparams_print); 66LCRYPTO_USED(DSAparams_print);