diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/Makefile | 101 |
1 files changed, 83 insertions, 18 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 818b2c2c14..0f48177092 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.81 2022/11/09 22:52:51 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.82 2022/11/09 23:33:08 joshua Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -52,27 +52,92 @@ VERSION_SCRIPT= Symbols.map | |||
52 | SYMBOL_LIST= ${.CURDIR}/Symbols.list | 52 | SYMBOL_LIST= ${.CURDIR}/Symbols.list |
53 | 53 | ||
54 | # crypto/ | 54 | # crypto/ |
55 | SRCS+= cryptlib.c malloc-wrapper.c mem_dbg.c cversion.c ex_data.c cpt_err.c | 55 | SRCS+= cpt_err.c |
56 | SRCS+= o_str.c o_init.c o_fips.c | 56 | SRCS+= cryptlib.c |
57 | SRCS+= mem_clr.c crypto_init.c crypto_lock.c | 57 | SRCS+= crypto_init.c |
58 | SRCS+= crypto_lock.c | ||
59 | SRCS+= cversion.c | ||
60 | SRCS+= ex_data.c | ||
61 | SRCS+= malloc-wrapper.c | ||
62 | SRCS+= mem_clr.c | ||
63 | SRCS+= mem_dbg.c | ||
64 | SRCS+= o_fips.c | ||
65 | SRCS+= o_init.c | ||
66 | SRCS+= o_str.c | ||
58 | 67 | ||
59 | # aes/ | 68 | # aes/ |
60 | SRCS+= aes_misc.c aes_ecb.c aes_cfb.c aes_ofb.c | 69 | SRCS+= aes_cfb.c |
61 | SRCS+= aes_ctr.c aes_ige.c aes_wrap.c | 70 | SRCS+= aes_ctr.c |
71 | SRCS+= aes_ecb.c | ||
72 | SRCS+= aes_ige.c | ||
73 | SRCS+= aes_misc.c | ||
74 | SRCS+= aes_ofb.c | ||
75 | SRCS+= aes_wrap.c | ||
62 | 76 | ||
63 | # asn1/ | 77 | # asn1/ |
64 | SRCS+= a_object.c a_bitstr.c a_time.c a_int.c a_octet.c a_pkey.c a_pubkey.c | 78 | SRCS+= a_bitstr.c |
65 | SRCS+= a_print.c a_type.c a_string.c | 79 | SRCS+= a_enum.c |
66 | SRCS+= a_enum.c a_utf8.c a_mbstr.c a_strex.c | 80 | SRCS+= a_int.c |
67 | SRCS+= x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c | 81 | SRCS+= a_mbstr.c |
68 | SRCS+= x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c | 82 | SRCS+= a_object.c |
69 | SRCS+= t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c | 83 | SRCS+= a_octet.c |
70 | SRCS+= tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c | 84 | SRCS+= a_pkey.c |
71 | SRCS+= tasn_prn.c ameth_lib.c | 85 | SRCS+= a_print.c |
72 | SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c | 86 | SRCS+= a_pubkey.c |
73 | SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c | 87 | SRCS+= a_strex.c |
74 | SRCS+= p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | 88 | SRCS+= a_string.c |
75 | SRCS+= a_time_tm.c asn1_item.c asn1_old.c asn1_types.c asn1_lib.c a_time_posix.c | 89 | SRCS+= a_strnid.c |
90 | SRCS+= a_time.c | ||
91 | SRCS+= a_time_posix.c | ||
92 | SRCS+= a_time_tm.c | ||
93 | SRCS+= a_type.c | ||
94 | SRCS+= a_utf8.c | ||
95 | SRCS+= ameth_lib.c | ||
96 | SRCS+= asn1_err.c | ||
97 | SRCS+= asn1_gen.c | ||
98 | SRCS+= asn1_item.c | ||
99 | SRCS+= asn1_lib.c | ||
100 | SRCS+= asn1_old.c | ||
101 | SRCS+= asn1_old_lib.c | ||
102 | SRCS+= asn1_par.c | ||
103 | SRCS+= asn1_types.c | ||
104 | SRCS+= asn_mime.c | ||
105 | SRCS+= asn_moid.c | ||
106 | SRCS+= bio_asn1.c | ||
107 | SRCS+= bio_ndef.c | ||
108 | SRCS+= nsseq.c | ||
109 | SRCS+= p5_pbe.c | ||
110 | SRCS+= p5_pbev2.c | ||
111 | SRCS+= p8_pkey.c | ||
112 | SRCS+= t_crl.c | ||
113 | SRCS+= t_pkey.c | ||
114 | SRCS+= t_req.c | ||
115 | SRCS+= t_spki.c | ||
116 | SRCS+= t_x509.c | ||
117 | SRCS+= t_x509a.c | ||
118 | SRCS+= tasn_dec.c | ||
119 | SRCS+= tasn_enc.c | ||
120 | SRCS+= tasn_fre.c | ||
121 | SRCS+= tasn_new.c | ||
122 | SRCS+= tasn_prn.c | ||
123 | SRCS+= tasn_typ.c | ||
124 | SRCS+= tasn_utl.c | ||
125 | SRCS+= x_algor.c | ||
126 | SRCS+= x_attrib.c | ||
127 | SRCS+= x_bignum.c | ||
128 | SRCS+= x_crl.c | ||
129 | SRCS+= x_exten.c | ||
130 | SRCS+= x_info.c | ||
131 | SRCS+= x_long.c | ||
132 | SRCS+= x_name.c | ||
133 | SRCS+= x_pkey.c | ||
134 | SRCS+= x_pubkey.c | ||
135 | SRCS+= x_req.c | ||
136 | SRCS+= x_sig.c | ||
137 | SRCS+= x_spki.c | ||
138 | SRCS+= x_val.c | ||
139 | SRCS+= x_x509.c | ||
140 | SRCS+= x_x509a.c | ||
76 | 141 | ||
77 | # bf/ | 142 | # bf/ |
78 | SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c | 143 | SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c |