summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dsa
diff options
context:
space:
mode:
authortb <>2023-03-25 09:09:28 +0000
committertb <>2023-03-25 09:09:28 +0000
commit28454ed747063b6a3018cbbbb047dd6d5eb6eff9 (patch)
tree6fad579477b0e8d443c21590407a31930cbfd06f /src/lib/libcrypto/dsa
parent6e32682cd23d49bbf50a502d3485ff85a3faf494 (diff)
downloadopenbsd-28454ed747063b6a3018cbbbb047dd6d5eb6eff9.tar.gz
openbsd-28454ed747063b6a3018cbbbb047dd6d5eb6eff9.tar.bz2
openbsd-28454ed747063b6a3018cbbbb047dd6d5eb6eff9.zip
BN_free() is defined in <openssl/bn.h>
This is currently pulled in via dsa.h and ecdsa.h, but only when OPENSSL_NO_DEPRECATED is not defined. We should fix this in the public header, too - let's wait a bit with that.
Diffstat (limited to 'src/lib/libcrypto/dsa')
-rw-r--r--src/lib/libcrypto/dsa/dsa_asn1.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/dsa/dsa_asn1.c b/src/lib/libcrypto/dsa/dsa_asn1.c
index f6c66cecde..70a826ca95 100644
--- a/src/lib/libcrypto/dsa/dsa_asn1.c
+++ b/src/lib/libcrypto/dsa/dsa_asn1.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dsa_asn1.c,v 1.29 2023/03/07 09:27:10 jsing Exp $ */ 1/* $OpenBSD: dsa_asn1.c,v 1.30 2023/03/25 09:09:28 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
@@ -61,6 +61,7 @@
61 61
62#include <openssl/asn1.h> 62#include <openssl/asn1.h>
63#include <openssl/asn1t.h> 63#include <openssl/asn1t.h>
64#include <openssl/bn.h>
64#include <openssl/dsa.h> 65#include <openssl/dsa.h>
65#include <openssl/err.h> 66#include <openssl/err.h>
66 67