summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authorjsing <>2021-12-04 15:38:10 +0000
committerjsing <>2021-12-04 15:38:10 +0000
commit766ad3b0542215bba5dbae922add70f5c0c23224 (patch)
treebe9c4320e3550c6ffa5838f5c7b2a84704886a4d /src/lib/libcrypto/Makefile
parent553bc9b478f48580c6c51ddaa65c906cac0ee4e7 (diff)
downloadopenbsd-766ad3b0542215bba5dbae922add70f5c0c23224.tar.gz
openbsd-766ad3b0542215bba5dbae922add70f5c0c23224.tar.bz2
openbsd-766ad3b0542215bba5dbae922add70f5c0c23224.zip
Consolidate {d2i,i2d}_{pr,pu}.c
Currently there are two files for private key ASN.1 (d2i_pr.c, i2d_pr.c) and two files for public key ASN.1 (d2i_pu.c, i2d_pu.c). All of the other ASN.1 code has d2i and i2d in the same per-object file. Consolidate d2i_pr.c/i2d_pr.c into a_pkey.c and consolidate d2i_pu.c/i2d_pu.c into a_pubkey.c before making any further changes to this code. ok tb@
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index 1a026f7c60..e4269272f8 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.51 2021/11/24 01:12:43 beck Exp $ 1# $OpenBSD: Makefile,v 1.52 2021/12/04 15:38:10 jsing Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -49,12 +49,12 @@ SRCS+= aes_misc.c aes_ecb.c aes_cfb.c aes_ofb.c
49SRCS+= aes_ctr.c aes_ige.c aes_wrap.c 49SRCS+= aes_ctr.c aes_ige.c aes_wrap.c
50 50
51# asn1/ 51# asn1/
52SRCS+= a_object.c a_bitstr.c a_time.c a_int.c a_octet.c 52SRCS+= a_object.c a_bitstr.c a_time.c a_int.c a_octet.c a_pkey.c a_pubkey.c
53SRCS+= a_print.c a_type.c a_dup.c a_d2i_fp.c a_i2d_fp.c 53SRCS+= a_print.c a_type.c a_dup.c a_d2i_fp.c a_i2d_fp.c
54SRCS+= a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c 54SRCS+= a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c
55SRCS+= x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c 55SRCS+= x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c
56SRCS+= x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c 56SRCS+= x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c
57SRCS+= x_nx509.c d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c 57SRCS+= x_nx509.c
58SRCS+= t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c 58SRCS+= t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c
59SRCS+= tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c 59SRCS+= tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c
60SRCS+= tasn_prn.c ameth_lib.c 60SRCS+= tasn_prn.c ameth_lib.c