aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2023-08-18 19:03:40 +0000
committerEd Maste <emaste@FreeBSD.org>2023-08-18 20:15:48 +0000
commit57a3b81785c0f7f458789d0baa5c8265ecfd5bac (patch)
tree9bf479f7ad80547d32bc5266aeb524d1525c5d4d
parent5aacf339f60109917f8e18f5645cb66f544b33d2 (diff)
downloadsrc-57a3b81785c0f7f458789d0baa5c8265ecfd5bac.tar.gz
src-57a3b81785c0f7f458789d0baa5c8265ecfd5bac.zip
libcrypto: add rsa_depr.c to the build
It provides the RSA_generate_key function, which is deprecated as of 3.0 but is used by various ports. Reviewed by: kbowling Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D41506
-rw-r--r--secure/lib/libcrypto/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index 006577737d7b..d4102c6cd0cf 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -474,7 +474,7 @@ SRCS+= rmd-586.S
.endif
# rsa
-SRCS+= rsa_ameth.c rsa_asn1.c rsa_backend.c rsa_chk.c rsa_crpt.c
+SRCS+= rsa_ameth.c rsa_asn1.c rsa_backend.c rsa_chk.c rsa_crpt.c rsa_depr.c
SRCS+= rsa_err.c rsa_gen.c rsa_lib.c rsa_meth.c rsa_mp.c rsa_mp_names.c
SRCS+= rsa_none.c rsa_oaep.c rsa_ossl.c rsa_pk1.c rsa_pmeth.c rsa_prn.c
SRCS+= rsa_pss.c rsa_saos.c rsa_schemes.c rsa_sign.c rsa_sp800_56b_check.c