summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authorjsing <>2021-12-25 12:00:22 +0000
committerjsing <>2021-12-25 12:00:22 +0000
commit346d30a52f494d9f2e76e352a6ba8ca2ebdcf62f (patch)
treef8066c2e1b162d8419257da2a38cd910b7453a40 /src/lib/libcrypto/Makefile
parenta1aa360082915390f4dce8cb202c7a908f0801d7 (diff)
downloadopenbsd-346d30a52f494d9f2e76e352a6ba8ca2ebdcf62f.tar.gz
openbsd-346d30a52f494d9f2e76e352a6ba8ca2ebdcf62f.tar.bz2
openbsd-346d30a52f494d9f2e76e352a6ba8ca2ebdcf62f.zip
More consolidation of ASN.1 code.
Consolidate various ASN1_item_* functions into asn1_item.c and the remaining NO_OLD_ASN1 code (not to be confused with the NO_ASN1_OLD code) into asn1_old.c. This is preferable to having many files, often with one or two functions per file. No functional change. Discussed with tb@
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index cc53d8e6fe..9b9d448fa2 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.60 2021/12/25 07:04:03 jsing Exp $ 1# $OpenBSD: Makefile,v 1.61 2021/12/25 12:00:22 jsing Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -53,8 +53,8 @@ SRCS+= aes_ctr.c aes_ige.c aes_wrap.c
53 53
54# asn1/ 54# asn1/
55SRCS+= a_object.c a_bitstr.c a_time.c a_int.c a_octet.c a_pkey.c a_pubkey.c 55SRCS+= a_object.c a_bitstr.c a_time.c a_int.c a_octet.c a_pkey.c a_pubkey.c
56SRCS+= a_print.c a_type.c a_dup.c a_d2i_fp.c a_i2d_fp.c a_string.c 56SRCS+= a_print.c a_type.c a_string.c
57SRCS+= a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c 57SRCS+= a_enum.c a_utf8.c a_mbstr.c a_strex.c
58SRCS+= x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c 58SRCS+= x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c
59SRCS+= x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c 59SRCS+= x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c
60SRCS+= x_nx509.c 60SRCS+= x_nx509.c
@@ -65,7 +65,7 @@ SRCS+= n_pkey.c
65SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c 65SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c
66SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c 66SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c
67SRCS+= evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c 67SRCS+= evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
68SRCS+= a_time_tm.c asn1_types.c asn1_lib.c 68SRCS+= a_time_tm.c asn1_item.c asn1_old.c asn1_types.c asn1_lib.c
69 69
70# bf/ 70# bf/
71SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c 71SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c