From caca418fe5923bc6feb9bf88620d428961dee40d Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sat, 4 Dec 2021 15:38:10 +0000 Subject: 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@ --- src/lib/libcrypto/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/libcrypto/Makefile') 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 @@ -# $OpenBSD: Makefile,v 1.51 2021/11/24 01:12:43 beck Exp $ +# $OpenBSD: Makefile,v 1.52 2021/12/04 15:38:10 jsing Exp $ LIB= crypto LIBREBUILD=y @@ -49,12 +49,12 @@ SRCS+= aes_misc.c aes_ecb.c aes_cfb.c aes_ofb.c SRCS+= aes_ctr.c aes_ige.c aes_wrap.c # asn1/ -SRCS+= a_object.c a_bitstr.c a_time.c a_int.c a_octet.c +SRCS+= a_object.c a_bitstr.c a_time.c a_int.c a_octet.c a_pkey.c a_pubkey.c SRCS+= a_print.c a_type.c a_dup.c a_d2i_fp.c a_i2d_fp.c SRCS+= a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c SRCS+= x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c SRCS+= x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c -SRCS+= x_nx509.c d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c +SRCS+= x_nx509.c SRCS+= t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c SRCS+= tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c SRCS+= tasn_prn.c ameth_lib.c -- cgit v1.2.3-55-g6feb