diff options
Diffstat (limited to 'crypto/Makefile.am')
-rw-r--r-- | crypto/Makefile.am | 809 |
1 files changed, 809 insertions, 0 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am new file mode 100644 index 0000000..39b143d --- /dev/null +++ b/crypto/Makefile.am | |||
@@ -0,0 +1,809 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | ||
2 | |||
3 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 | ||
4 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp | ||
5 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes | ||
6 | |||
7 | lib_LTLIBRARIES = libcrypto.la | ||
8 | |||
9 | EXTRA_DIST = VERSION | ||
10 | |||
11 | libcrypto_la_LDFLAGS = -version-info @LIBCRYPTO_VERSION@ | ||
12 | libcrypto_la_LIBADD = libcompat.la libcompatnoopt.la | ||
13 | libcrypto_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) -DOPENSSL_NO_HW_PADLOCK | ||
14 | |||
15 | noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la | ||
16 | |||
17 | # compatibility functions that need to be built without optimizations | ||
18 | libcompatnoopt_la_CFLAGS = -O0 | ||
19 | libcompatnoopt_la_SOURCES = | ||
20 | |||
21 | if !HAVE_EXPLICIT_BZERO | ||
22 | libcompatnoopt_la_SOURCES += compat/explicit_bzero.c | ||
23 | endif | ||
24 | |||
25 | # other compatibility functions | ||
26 | libcompat_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) | ||
27 | libcompat_la_SOURCES = | ||
28 | libcompat_la_LIBADD = $(PLATFORM_LDADD) | ||
29 | |||
30 | if !HAVE_STRLCAT | ||
31 | libcompat_la_SOURCES += compat/strlcat.c | ||
32 | endif | ||
33 | |||
34 | if !HAVE_STRLCPY | ||
35 | libcompat_la_SOURCES += compat/strlcpy.c | ||
36 | endif | ||
37 | |||
38 | if !HAVE_STRNDUP | ||
39 | libcompat_la_SOURCES += compat/strndup.c | ||
40 | # the only user of strnlen is strndup, so only build it if needed | ||
41 | if !HAVE_STRNLEN | ||
42 | libcompat_la_SOURCES += compat/strnlen.c | ||
43 | endif | ||
44 | endif | ||
45 | |||
46 | if !HAVE_ASPRINTF | ||
47 | libcompat_la_SOURCES += compat/bsd-asprintf.c | ||
48 | endif | ||
49 | |||
50 | if !HAVE_REALLOCARRAY | ||
51 | libcompat_la_SOURCES += compat/reallocarray.c | ||
52 | endif | ||
53 | |||
54 | if !HAVE_TIMINGSAFE_MEMCMP | ||
55 | libcompat_la_SOURCES += compat/timingsafe_memcmp.c | ||
56 | endif | ||
57 | |||
58 | if !HAVE_TIMINGSAFE_BCMP | ||
59 | libcompat_la_SOURCES += compat/timingsafe_bcmp.c | ||
60 | endif | ||
61 | |||
62 | if !HAVE_ARC4RANDOM_BUF | ||
63 | libcompat_la_SOURCES += compat/arc4random.c | ||
64 | |||
65 | if !HAVE_GETENTROPY | ||
66 | if HOST_FREEBSD | ||
67 | libcompat_la_SOURCES += compat/getentropy_freebsd.c | ||
68 | endif | ||
69 | if HOST_LINUX | ||
70 | libcompat_la_SOURCES += compat/getentropy_linux.c | ||
71 | endif | ||
72 | if HOST_DARWIN | ||
73 | libcompat_la_SOURCES += compat/getentropy_osx.c | ||
74 | endif | ||
75 | if HOST_SOLARIS | ||
76 | libcompat_la_SOURCES += compat/getentropy_solaris.c | ||
77 | endif | ||
78 | if HOST_WIN | ||
79 | libcompat_la_SOURCES += compat/getentropy_win.c | ||
80 | endif | ||
81 | endif | ||
82 | |||
83 | endif | ||
84 | |||
85 | if !HAVE_ISSETUGID | ||
86 | if HOST_LINUX | ||
87 | libcompat_la_SOURCES += compat/issetugid_linux.c | ||
88 | endif | ||
89 | if HOST_WIN | ||
90 | libcompat_la_SOURCES += compat/issetugid_win.c | ||
91 | endif | ||
92 | endif | ||
93 | |||
94 | noinst_HEADERS = | ||
95 | noinst_HEADERS += compat/arc4random.h | ||
96 | noinst_HEADERS += compat/arc4random_freebsd.h | ||
97 | noinst_HEADERS += compat/arc4random_linux.h | ||
98 | noinst_HEADERS += compat/arc4random_osx.h | ||
99 | noinst_HEADERS += compat/arc4random_solaris.h | ||
100 | noinst_HEADERS += compat/arc4random_win.h | ||
101 | noinst_HEADERS += compat/chacha_private.h | ||
102 | |||
103 | libcrypto_la_SOURCES = | ||
104 | EXTRA_libcrypto_la_SOURCES = | ||
105 | |||
106 | libcrypto_la_SOURCES += cpt_err.c | ||
107 | libcrypto_la_SOURCES += cryptlib.c | ||
108 | libcrypto_la_SOURCES += cversion.c | ||
109 | libcrypto_la_SOURCES += ex_data.c | ||
110 | libcrypto_la_SOURCES += malloc-wrapper.c | ||
111 | libcrypto_la_SOURCES += mem_clr.c | ||
112 | libcrypto_la_SOURCES += mem_dbg.c | ||
113 | libcrypto_la_SOURCES += o_init.c | ||
114 | libcrypto_la_SOURCES += o_str.c | ||
115 | libcrypto_la_SOURCES += o_time.c | ||
116 | noinst_HEADERS += cryptlib.h | ||
117 | noinst_HEADERS += md32_common.h | ||
118 | noinst_HEADERS += o_time.h | ||
119 | |||
120 | # aes | ||
121 | libcrypto_la_SOURCES += aes/aes_cbc.c | ||
122 | libcrypto_la_SOURCES += aes/aes_cfb.c | ||
123 | libcrypto_la_SOURCES += aes/aes_core.c | ||
124 | libcrypto_la_SOURCES += aes/aes_ctr.c | ||
125 | libcrypto_la_SOURCES += aes/aes_ecb.c | ||
126 | libcrypto_la_SOURCES += aes/aes_ige.c | ||
127 | libcrypto_la_SOURCES += aes/aes_misc.c | ||
128 | libcrypto_la_SOURCES += aes/aes_ofb.c | ||
129 | libcrypto_la_SOURCES += aes/aes_wrap.c | ||
130 | noinst_HEADERS += aes/aes_locl.h | ||
131 | |||
132 | # asn1 | ||
133 | libcrypto_la_SOURCES += asn1/a_bitstr.c | ||
134 | libcrypto_la_SOURCES += asn1/a_bool.c | ||
135 | libcrypto_la_SOURCES += asn1/a_bytes.c | ||
136 | libcrypto_la_SOURCES += asn1/a_d2i_fp.c | ||
137 | libcrypto_la_SOURCES += asn1/a_digest.c | ||
138 | libcrypto_la_SOURCES += asn1/a_dup.c | ||
139 | libcrypto_la_SOURCES += asn1/a_enum.c | ||
140 | libcrypto_la_SOURCES += asn1/a_gentm.c | ||
141 | libcrypto_la_SOURCES += asn1/a_i2d_fp.c | ||
142 | libcrypto_la_SOURCES += asn1/a_int.c | ||
143 | libcrypto_la_SOURCES += asn1/a_mbstr.c | ||
144 | libcrypto_la_SOURCES += asn1/a_object.c | ||
145 | libcrypto_la_SOURCES += asn1/a_octet.c | ||
146 | libcrypto_la_SOURCES += asn1/a_print.c | ||
147 | libcrypto_la_SOURCES += asn1/a_set.c | ||
148 | libcrypto_la_SOURCES += asn1/a_sign.c | ||
149 | libcrypto_la_SOURCES += asn1/a_strex.c | ||
150 | libcrypto_la_SOURCES += asn1/a_strnid.c | ||
151 | libcrypto_la_SOURCES += asn1/a_time.c | ||
152 | libcrypto_la_SOURCES += asn1/a_type.c | ||
153 | libcrypto_la_SOURCES += asn1/a_utctm.c | ||
154 | libcrypto_la_SOURCES += asn1/a_utf8.c | ||
155 | libcrypto_la_SOURCES += asn1/a_verify.c | ||
156 | libcrypto_la_SOURCES += asn1/ameth_lib.c | ||
157 | libcrypto_la_SOURCES += asn1/asn1_err.c | ||
158 | libcrypto_la_SOURCES += asn1/asn1_gen.c | ||
159 | libcrypto_la_SOURCES += asn1/asn1_lib.c | ||
160 | libcrypto_la_SOURCES += asn1/asn1_par.c | ||
161 | libcrypto_la_SOURCES += asn1/asn_mime.c | ||
162 | libcrypto_la_SOURCES += asn1/asn_moid.c | ||
163 | libcrypto_la_SOURCES += asn1/asn_pack.c | ||
164 | libcrypto_la_SOURCES += asn1/bio_asn1.c | ||
165 | libcrypto_la_SOURCES += asn1/bio_ndef.c | ||
166 | libcrypto_la_SOURCES += asn1/d2i_pr.c | ||
167 | libcrypto_la_SOURCES += asn1/d2i_pu.c | ||
168 | libcrypto_la_SOURCES += asn1/evp_asn1.c | ||
169 | libcrypto_la_SOURCES += asn1/f_enum.c | ||
170 | libcrypto_la_SOURCES += asn1/f_int.c | ||
171 | libcrypto_la_SOURCES += asn1/f_string.c | ||
172 | libcrypto_la_SOURCES += asn1/i2d_pr.c | ||
173 | libcrypto_la_SOURCES += asn1/i2d_pu.c | ||
174 | libcrypto_la_SOURCES += asn1/n_pkey.c | ||
175 | libcrypto_la_SOURCES += asn1/nsseq.c | ||
176 | libcrypto_la_SOURCES += asn1/p5_pbe.c | ||
177 | libcrypto_la_SOURCES += asn1/p5_pbev2.c | ||
178 | libcrypto_la_SOURCES += asn1/p8_pkey.c | ||
179 | libcrypto_la_SOURCES += asn1/t_bitst.c | ||
180 | libcrypto_la_SOURCES += asn1/t_crl.c | ||
181 | libcrypto_la_SOURCES += asn1/t_pkey.c | ||
182 | libcrypto_la_SOURCES += asn1/t_req.c | ||
183 | libcrypto_la_SOURCES += asn1/t_spki.c | ||
184 | libcrypto_la_SOURCES += asn1/t_x509.c | ||
185 | libcrypto_la_SOURCES += asn1/t_x509a.c | ||
186 | libcrypto_la_SOURCES += asn1/tasn_dec.c | ||
187 | libcrypto_la_SOURCES += asn1/tasn_enc.c | ||
188 | libcrypto_la_SOURCES += asn1/tasn_fre.c | ||
189 | libcrypto_la_SOURCES += asn1/tasn_new.c | ||
190 | libcrypto_la_SOURCES += asn1/tasn_prn.c | ||
191 | libcrypto_la_SOURCES += asn1/tasn_typ.c | ||
192 | libcrypto_la_SOURCES += asn1/tasn_utl.c | ||
193 | libcrypto_la_SOURCES += asn1/x_algor.c | ||
194 | libcrypto_la_SOURCES += asn1/x_attrib.c | ||
195 | libcrypto_la_SOURCES += asn1/x_bignum.c | ||
196 | libcrypto_la_SOURCES += asn1/x_crl.c | ||
197 | libcrypto_la_SOURCES += asn1/x_exten.c | ||
198 | libcrypto_la_SOURCES += asn1/x_info.c | ||
199 | libcrypto_la_SOURCES += asn1/x_long.c | ||
200 | libcrypto_la_SOURCES += asn1/x_name.c | ||
201 | libcrypto_la_SOURCES += asn1/x_nx509.c | ||
202 | libcrypto_la_SOURCES += asn1/x_pkey.c | ||
203 | libcrypto_la_SOURCES += asn1/x_pubkey.c | ||
204 | libcrypto_la_SOURCES += asn1/x_req.c | ||
205 | libcrypto_la_SOURCES += asn1/x_sig.c | ||
206 | libcrypto_la_SOURCES += asn1/x_spki.c | ||
207 | libcrypto_la_SOURCES += asn1/x_val.c | ||
208 | libcrypto_la_SOURCES += asn1/x_x509.c | ||
209 | libcrypto_la_SOURCES += asn1/x_x509a.c | ||
210 | noinst_HEADERS += asn1/asn1_locl.h | ||
211 | noinst_HEADERS += asn1/charmap.h | ||
212 | |||
213 | # bf | ||
214 | libcrypto_la_SOURCES += bf/bf_cfb64.c | ||
215 | libcrypto_la_SOURCES += bf/bf_ecb.c | ||
216 | libcrypto_la_SOURCES += bf/bf_enc.c | ||
217 | libcrypto_la_SOURCES += bf/bf_ofb64.c | ||
218 | libcrypto_la_SOURCES += bf/bf_skey.c | ||
219 | noinst_HEADERS += bf/bf_locl.h | ||
220 | noinst_HEADERS += bf/bf_pi.h | ||
221 | |||
222 | # bio | ||
223 | libcrypto_la_SOURCES += bio/b_dump.c | ||
224 | if !HOST_WIN | ||
225 | libcrypto_la_SOURCES += bio/b_posix.c | ||
226 | endif | ||
227 | libcrypto_la_SOURCES += bio/b_print.c | ||
228 | libcrypto_la_SOURCES += bio/b_sock.c | ||
229 | if HOST_WIN | ||
230 | libcrypto_la_SOURCES += bio/b_win.c | ||
231 | endif | ||
232 | libcrypto_la_SOURCES += bio/bf_buff.c | ||
233 | libcrypto_la_SOURCES += bio/bf_nbio.c | ||
234 | libcrypto_la_SOURCES += bio/bf_null.c | ||
235 | libcrypto_la_SOURCES += bio/bio_cb.c | ||
236 | libcrypto_la_SOURCES += bio/bio_err.c | ||
237 | libcrypto_la_SOURCES += bio/bio_lib.c | ||
238 | libcrypto_la_SOURCES += bio/bss_acpt.c | ||
239 | libcrypto_la_SOURCES += bio/bss_bio.c | ||
240 | libcrypto_la_SOURCES += bio/bss_conn.c | ||
241 | libcrypto_la_SOURCES += bio/bss_dgram.c | ||
242 | libcrypto_la_SOURCES += bio/bss_fd.c | ||
243 | libcrypto_la_SOURCES += bio/bss_file.c | ||
244 | libcrypto_la_SOURCES += bio/bss_log.c | ||
245 | libcrypto_la_SOURCES += bio/bss_mem.c | ||
246 | libcrypto_la_SOURCES += bio/bss_null.c | ||
247 | libcrypto_la_SOURCES += bio/bss_sock.c | ||
248 | |||
249 | # bn | ||
250 | libcrypto_la_SOURCES += bn/bn_add.c | ||
251 | libcrypto_la_SOURCES += bn/bn_asm.c | ||
252 | libcrypto_la_SOURCES += bn/bn_blind.c | ||
253 | libcrypto_la_SOURCES += bn/bn_const.c | ||
254 | libcrypto_la_SOURCES += bn/bn_ctx.c | ||
255 | libcrypto_la_SOURCES += bn/bn_depr.c | ||
256 | libcrypto_la_SOURCES += bn/bn_div.c | ||
257 | libcrypto_la_SOURCES += bn/bn_err.c | ||
258 | libcrypto_la_SOURCES += bn/bn_exp.c | ||
259 | libcrypto_la_SOURCES += bn/bn_exp2.c | ||
260 | libcrypto_la_SOURCES += bn/bn_gcd.c | ||
261 | libcrypto_la_SOURCES += bn/bn_gf2m.c | ||
262 | libcrypto_la_SOURCES += bn/bn_kron.c | ||
263 | libcrypto_la_SOURCES += bn/bn_lib.c | ||
264 | libcrypto_la_SOURCES += bn/bn_mod.c | ||
265 | libcrypto_la_SOURCES += bn/bn_mont.c | ||
266 | libcrypto_la_SOURCES += bn/bn_mpi.c | ||
267 | libcrypto_la_SOURCES += bn/bn_mul.c | ||
268 | libcrypto_la_SOURCES += bn/bn_nist.c | ||
269 | libcrypto_la_SOURCES += bn/bn_prime.c | ||
270 | libcrypto_la_SOURCES += bn/bn_print.c | ||
271 | libcrypto_la_SOURCES += bn/bn_rand.c | ||
272 | libcrypto_la_SOURCES += bn/bn_recp.c | ||
273 | libcrypto_la_SOURCES += bn/bn_shift.c | ||
274 | libcrypto_la_SOURCES += bn/bn_sqr.c | ||
275 | libcrypto_la_SOURCES += bn/bn_sqrt.c | ||
276 | libcrypto_la_SOURCES += bn/bn_word.c | ||
277 | libcrypto_la_SOURCES += bn/bn_x931p.c | ||
278 | noinst_HEADERS += bn/bn_lcl.h | ||
279 | noinst_HEADERS += bn/bn_prime.h | ||
280 | |||
281 | # buffer | ||
282 | libcrypto_la_SOURCES += buffer/buf_err.c | ||
283 | libcrypto_la_SOURCES += buffer/buf_str.c | ||
284 | libcrypto_la_SOURCES += buffer/buffer.c | ||
285 | |||
286 | # camellia | ||
287 | libcrypto_la_SOURCES += camellia/camellia.c | ||
288 | libcrypto_la_SOURCES += camellia/cmll_cbc.c | ||
289 | libcrypto_la_SOURCES += camellia/cmll_cfb.c | ||
290 | libcrypto_la_SOURCES += camellia/cmll_ctr.c | ||
291 | libcrypto_la_SOURCES += camellia/cmll_ecb.c | ||
292 | libcrypto_la_SOURCES += camellia/cmll_misc.c | ||
293 | libcrypto_la_SOURCES += camellia/cmll_ofb.c | ||
294 | noinst_HEADERS += camellia/camellia.h | ||
295 | noinst_HEADERS += camellia/cmll_locl.h | ||
296 | |||
297 | # cast | ||
298 | libcrypto_la_SOURCES += cast/c_cfb64.c | ||
299 | libcrypto_la_SOURCES += cast/c_ecb.c | ||
300 | libcrypto_la_SOURCES += cast/c_enc.c | ||
301 | libcrypto_la_SOURCES += cast/c_ofb64.c | ||
302 | libcrypto_la_SOURCES += cast/c_skey.c | ||
303 | noinst_HEADERS += cast/cast_lcl.h | ||
304 | noinst_HEADERS += cast/cast_s.h | ||
305 | |||
306 | # chacha | ||
307 | EXTRA_libcrypto_la_SOURCES += chacha/chacha-merged.c | ||
308 | libcrypto_la_SOURCES += chacha/chacha.c | ||
309 | |||
310 | # cmac | ||
311 | libcrypto_la_SOURCES += cmac/cm_ameth.c | ||
312 | libcrypto_la_SOURCES += cmac/cm_pmeth.c | ||
313 | libcrypto_la_SOURCES += cmac/cmac.c | ||
314 | |||
315 | # comp | ||
316 | libcrypto_la_SOURCES += comp/c_rle.c | ||
317 | libcrypto_la_SOURCES += comp/c_zlib.c | ||
318 | libcrypto_la_SOURCES += comp/comp_err.c | ||
319 | libcrypto_la_SOURCES += comp/comp_lib.c | ||
320 | |||
321 | # conf | ||
322 | libcrypto_la_SOURCES += conf/conf_api.c | ||
323 | libcrypto_la_SOURCES += conf/conf_def.c | ||
324 | libcrypto_la_SOURCES += conf/conf_err.c | ||
325 | libcrypto_la_SOURCES += conf/conf_lib.c | ||
326 | libcrypto_la_SOURCES += conf/conf_mall.c | ||
327 | libcrypto_la_SOURCES += conf/conf_mod.c | ||
328 | libcrypto_la_SOURCES += conf/conf_sap.c | ||
329 | noinst_HEADERS += conf/conf_def.h | ||
330 | |||
331 | # des | ||
332 | libcrypto_la_SOURCES += des/cbc_cksm.c | ||
333 | libcrypto_la_SOURCES += des/cbc_enc.c | ||
334 | libcrypto_la_SOURCES += des/cfb64ede.c | ||
335 | libcrypto_la_SOURCES += des/cfb64enc.c | ||
336 | libcrypto_la_SOURCES += des/cfb_enc.c | ||
337 | libcrypto_la_SOURCES += des/des_enc.c | ||
338 | libcrypto_la_SOURCES += des/ecb3_enc.c | ||
339 | libcrypto_la_SOURCES += des/ecb_enc.c | ||
340 | libcrypto_la_SOURCES += des/ede_cbcm_enc.c | ||
341 | libcrypto_la_SOURCES += des/enc_read.c | ||
342 | libcrypto_la_SOURCES += des/enc_writ.c | ||
343 | libcrypto_la_SOURCES += des/fcrypt.c | ||
344 | libcrypto_la_SOURCES += des/fcrypt_b.c | ||
345 | EXTRA_libcrypto_la_SOURCES += des/ncbc_enc.c | ||
346 | libcrypto_la_SOURCES += des/ofb64ede.c | ||
347 | libcrypto_la_SOURCES += des/ofb64enc.c | ||
348 | libcrypto_la_SOURCES += des/ofb_enc.c | ||
349 | libcrypto_la_SOURCES += des/pcbc_enc.c | ||
350 | libcrypto_la_SOURCES += des/qud_cksm.c | ||
351 | libcrypto_la_SOURCES += des/rand_key.c | ||
352 | libcrypto_la_SOURCES += des/set_key.c | ||
353 | libcrypto_la_SOURCES += des/str2key.c | ||
354 | libcrypto_la_SOURCES += des/xcbc_enc.c | ||
355 | noinst_HEADERS += des/des_locl.h | ||
356 | noinst_HEADERS += des/spr.h | ||
357 | |||
358 | # dh | ||
359 | libcrypto_la_SOURCES += dh/dh_ameth.c | ||
360 | libcrypto_la_SOURCES += dh/dh_asn1.c | ||
361 | libcrypto_la_SOURCES += dh/dh_check.c | ||
362 | libcrypto_la_SOURCES += dh/dh_depr.c | ||
363 | libcrypto_la_SOURCES += dh/dh_err.c | ||
364 | libcrypto_la_SOURCES += dh/dh_gen.c | ||
365 | libcrypto_la_SOURCES += dh/dh_key.c | ||
366 | libcrypto_la_SOURCES += dh/dh_lib.c | ||
367 | libcrypto_la_SOURCES += dh/dh_pmeth.c | ||
368 | libcrypto_la_SOURCES += dh/dh_prn.c | ||
369 | |||
370 | # dsa | ||
371 | libcrypto_la_SOURCES += dsa/dsa_ameth.c | ||
372 | libcrypto_la_SOURCES += dsa/dsa_asn1.c | ||
373 | libcrypto_la_SOURCES += dsa/dsa_depr.c | ||
374 | libcrypto_la_SOURCES += dsa/dsa_err.c | ||
375 | libcrypto_la_SOURCES += dsa/dsa_gen.c | ||
376 | libcrypto_la_SOURCES += dsa/dsa_key.c | ||
377 | libcrypto_la_SOURCES += dsa/dsa_lib.c | ||
378 | libcrypto_la_SOURCES += dsa/dsa_ossl.c | ||
379 | libcrypto_la_SOURCES += dsa/dsa_pmeth.c | ||
380 | libcrypto_la_SOURCES += dsa/dsa_prn.c | ||
381 | libcrypto_la_SOURCES += dsa/dsa_sign.c | ||
382 | libcrypto_la_SOURCES += dsa/dsa_vrf.c | ||
383 | noinst_HEADERS += dsa/dsa_locl.h | ||
384 | |||
385 | # dso | ||
386 | libcrypto_la_SOURCES += dso/dso_dlfcn.c | ||
387 | libcrypto_la_SOURCES += dso/dso_err.c | ||
388 | libcrypto_la_SOURCES += dso/dso_lib.c | ||
389 | libcrypto_la_SOURCES += dso/dso_null.c | ||
390 | libcrypto_la_SOURCES += dso/dso_openssl.c | ||
391 | |||
392 | # ec | ||
393 | libcrypto_la_SOURCES += ec/ec2_mult.c | ||
394 | libcrypto_la_SOURCES += ec/ec2_oct.c | ||
395 | libcrypto_la_SOURCES += ec/ec2_smpl.c | ||
396 | libcrypto_la_SOURCES += ec/ec_ameth.c | ||
397 | libcrypto_la_SOURCES += ec/ec_asn1.c | ||
398 | libcrypto_la_SOURCES += ec/ec_check.c | ||
399 | libcrypto_la_SOURCES += ec/ec_curve.c | ||
400 | libcrypto_la_SOURCES += ec/ec_cvt.c | ||
401 | libcrypto_la_SOURCES += ec/ec_err.c | ||
402 | libcrypto_la_SOURCES += ec/ec_key.c | ||
403 | libcrypto_la_SOURCES += ec/ec_lib.c | ||
404 | libcrypto_la_SOURCES += ec/ec_mult.c | ||
405 | libcrypto_la_SOURCES += ec/ec_oct.c | ||
406 | libcrypto_la_SOURCES += ec/ec_pmeth.c | ||
407 | libcrypto_la_SOURCES += ec/ec_print.c | ||
408 | libcrypto_la_SOURCES += ec/eck_prn.c | ||
409 | libcrypto_la_SOURCES += ec/ecp_mont.c | ||
410 | libcrypto_la_SOURCES += ec/ecp_nist.c | ||
411 | libcrypto_la_SOURCES += ec/ecp_oct.c | ||
412 | libcrypto_la_SOURCES += ec/ecp_smpl.c | ||
413 | noinst_HEADERS += ec/ec_lcl.h | ||
414 | |||
415 | # ecdh | ||
416 | libcrypto_la_SOURCES += ecdh/ech_err.c | ||
417 | libcrypto_la_SOURCES += ecdh/ech_key.c | ||
418 | libcrypto_la_SOURCES += ecdh/ech_lib.c | ||
419 | libcrypto_la_SOURCES += ecdh/ech_ossl.c | ||
420 | noinst_HEADERS += ecdh/ech_locl.h | ||
421 | |||
422 | # ecdsa | ||
423 | libcrypto_la_SOURCES += ecdsa/ecs_asn1.c | ||
424 | libcrypto_la_SOURCES += ecdsa/ecs_err.c | ||
425 | libcrypto_la_SOURCES += ecdsa/ecs_lib.c | ||
426 | libcrypto_la_SOURCES += ecdsa/ecs_ossl.c | ||
427 | libcrypto_la_SOURCES += ecdsa/ecs_sign.c | ||
428 | libcrypto_la_SOURCES += ecdsa/ecs_vrf.c | ||
429 | noinst_HEADERS += ecdsa/ecs_locl.h | ||
430 | |||
431 | # engine | ||
432 | libcrypto_la_SOURCES += engine/eng_all.c | ||
433 | libcrypto_la_SOURCES += engine/eng_cnf.c | ||
434 | libcrypto_la_SOURCES += engine/eng_ctrl.c | ||
435 | libcrypto_la_SOURCES += engine/eng_dyn.c | ||
436 | libcrypto_la_SOURCES += engine/eng_err.c | ||
437 | libcrypto_la_SOURCES += engine/eng_fat.c | ||
438 | libcrypto_la_SOURCES += engine/eng_init.c | ||
439 | libcrypto_la_SOURCES += engine/eng_lib.c | ||
440 | libcrypto_la_SOURCES += engine/eng_list.c | ||
441 | libcrypto_la_SOURCES += engine/eng_openssl.c | ||
442 | libcrypto_la_SOURCES += engine/eng_pkey.c | ||
443 | libcrypto_la_SOURCES += engine/eng_rsax.c | ||
444 | libcrypto_la_SOURCES += engine/eng_table.c | ||
445 | libcrypto_la_SOURCES += engine/tb_asnmth.c | ||
446 | libcrypto_la_SOURCES += engine/tb_cipher.c | ||
447 | libcrypto_la_SOURCES += engine/tb_dh.c | ||
448 | libcrypto_la_SOURCES += engine/tb_digest.c | ||
449 | libcrypto_la_SOURCES += engine/tb_dsa.c | ||
450 | libcrypto_la_SOURCES += engine/tb_ecdh.c | ||
451 | libcrypto_la_SOURCES += engine/tb_ecdsa.c | ||
452 | libcrypto_la_SOURCES += engine/tb_pkmeth.c | ||
453 | libcrypto_la_SOURCES += engine/tb_rand.c | ||
454 | libcrypto_la_SOURCES += engine/tb_rsa.c | ||
455 | libcrypto_la_SOURCES += engine/tb_store.c | ||
456 | noinst_HEADERS += engine/eng_int.h | ||
457 | |||
458 | # err | ||
459 | libcrypto_la_SOURCES += err/err.c | ||
460 | libcrypto_la_SOURCES += err/err_all.c | ||
461 | libcrypto_la_SOURCES += err/err_prn.c | ||
462 | |||
463 | # evp | ||
464 | libcrypto_la_SOURCES += evp/bio_b64.c | ||
465 | libcrypto_la_SOURCES += evp/bio_enc.c | ||
466 | libcrypto_la_SOURCES += evp/bio_md.c | ||
467 | libcrypto_la_SOURCES += evp/c_all.c | ||
468 | libcrypto_la_SOURCES += evp/c_allc.c | ||
469 | libcrypto_la_SOURCES += evp/c_alld.c | ||
470 | libcrypto_la_SOURCES += evp/digest.c | ||
471 | libcrypto_la_SOURCES += evp/e_aes.c | ||
472 | libcrypto_la_SOURCES += evp/e_aes_cbc_hmac_sha1.c | ||
473 | libcrypto_la_SOURCES += evp/e_bf.c | ||
474 | libcrypto_la_SOURCES += evp/e_camellia.c | ||
475 | libcrypto_la_SOURCES += evp/e_cast.c | ||
476 | libcrypto_la_SOURCES += evp/e_chacha.c | ||
477 | libcrypto_la_SOURCES += evp/e_chacha20poly1305.c | ||
478 | libcrypto_la_SOURCES += evp/e_des.c | ||
479 | libcrypto_la_SOURCES += evp/e_des3.c | ||
480 | libcrypto_la_SOURCES += evp/e_gost2814789.c | ||
481 | libcrypto_la_SOURCES += evp/e_idea.c | ||
482 | libcrypto_la_SOURCES += evp/e_null.c | ||
483 | libcrypto_la_SOURCES += evp/e_old.c | ||
484 | libcrypto_la_SOURCES += evp/e_rc2.c | ||
485 | libcrypto_la_SOURCES += evp/e_rc4.c | ||
486 | libcrypto_la_SOURCES += evp/e_rc4_hmac_md5.c | ||
487 | libcrypto_la_SOURCES += evp/e_xcbc_d.c | ||
488 | libcrypto_la_SOURCES += evp/encode.c | ||
489 | libcrypto_la_SOURCES += evp/evp_aead.c | ||
490 | libcrypto_la_SOURCES += evp/evp_enc.c | ||
491 | libcrypto_la_SOURCES += evp/evp_err.c | ||
492 | libcrypto_la_SOURCES += evp/evp_key.c | ||
493 | libcrypto_la_SOURCES += evp/evp_lib.c | ||
494 | libcrypto_la_SOURCES += evp/evp_pbe.c | ||
495 | libcrypto_la_SOURCES += evp/evp_pkey.c | ||
496 | libcrypto_la_SOURCES += evp/m_dss.c | ||
497 | libcrypto_la_SOURCES += evp/m_dss1.c | ||
498 | libcrypto_la_SOURCES += evp/m_ecdsa.c | ||
499 | libcrypto_la_SOURCES += evp/m_gost2814789.c | ||
500 | libcrypto_la_SOURCES += evp/m_gostr341194.c | ||
501 | libcrypto_la_SOURCES += evp/m_md4.c | ||
502 | libcrypto_la_SOURCES += evp/m_md5.c | ||
503 | libcrypto_la_SOURCES += evp/m_mdc2.c | ||
504 | libcrypto_la_SOURCES += evp/m_null.c | ||
505 | libcrypto_la_SOURCES += evp/m_ripemd.c | ||
506 | libcrypto_la_SOURCES += evp/m_sha.c | ||
507 | libcrypto_la_SOURCES += evp/m_sha1.c | ||
508 | libcrypto_la_SOURCES += evp/m_sigver.c | ||
509 | libcrypto_la_SOURCES += evp/m_streebog.c | ||
510 | libcrypto_la_SOURCES += evp/m_wp.c | ||
511 | libcrypto_la_SOURCES += evp/names.c | ||
512 | libcrypto_la_SOURCES += evp/p5_crpt.c | ||
513 | libcrypto_la_SOURCES += evp/p5_crpt2.c | ||
514 | libcrypto_la_SOURCES += evp/p_dec.c | ||
515 | libcrypto_la_SOURCES += evp/p_enc.c | ||
516 | libcrypto_la_SOURCES += evp/p_lib.c | ||
517 | libcrypto_la_SOURCES += evp/p_open.c | ||
518 | libcrypto_la_SOURCES += evp/p_seal.c | ||
519 | libcrypto_la_SOURCES += evp/p_sign.c | ||
520 | libcrypto_la_SOURCES += evp/p_verify.c | ||
521 | libcrypto_la_SOURCES += evp/pmeth_fn.c | ||
522 | libcrypto_la_SOURCES += evp/pmeth_gn.c | ||
523 | libcrypto_la_SOURCES += evp/pmeth_lib.c | ||
524 | noinst_HEADERS += evp/evp_locl.h | ||
525 | |||
526 | # gost | ||
527 | libcrypto_la_SOURCES += gost/gost2814789.c | ||
528 | libcrypto_la_SOURCES += gost/gost89_keywrap.c | ||
529 | libcrypto_la_SOURCES += gost/gost89_params.c | ||
530 | libcrypto_la_SOURCES += gost/gost89imit_ameth.c | ||
531 | libcrypto_la_SOURCES += gost/gost89imit_pmeth.c | ||
532 | libcrypto_la_SOURCES += gost/gost_asn1.c | ||
533 | libcrypto_la_SOURCES += gost/gost_err.c | ||
534 | libcrypto_la_SOURCES += gost/gostr341001.c | ||
535 | libcrypto_la_SOURCES += gost/gostr341001_ameth.c | ||
536 | libcrypto_la_SOURCES += gost/gostr341001_key.c | ||
537 | libcrypto_la_SOURCES += gost/gostr341001_params.c | ||
538 | libcrypto_la_SOURCES += gost/gostr341001_pmeth.c | ||
539 | libcrypto_la_SOURCES += gost/gostr341194.c | ||
540 | libcrypto_la_SOURCES += gost/streebog.c | ||
541 | noinst_HEADERS += gost/gost.h | ||
542 | noinst_HEADERS += gost/gost_asn1.h | ||
543 | noinst_HEADERS += gost/gost_locl.h | ||
544 | |||
545 | # hmac | ||
546 | libcrypto_la_SOURCES += hmac/hm_ameth.c | ||
547 | libcrypto_la_SOURCES += hmac/hm_pmeth.c | ||
548 | libcrypto_la_SOURCES += hmac/hmac.c | ||
549 | |||
550 | # idea | ||
551 | libcrypto_la_SOURCES += idea/i_cbc.c | ||
552 | libcrypto_la_SOURCES += idea/i_cfb64.c | ||
553 | libcrypto_la_SOURCES += idea/i_ecb.c | ||
554 | libcrypto_la_SOURCES += idea/i_ofb64.c | ||
555 | libcrypto_la_SOURCES += idea/i_skey.c | ||
556 | noinst_HEADERS += idea/idea_lcl.h | ||
557 | |||
558 | # krb5 | ||
559 | libcrypto_la_SOURCES += krb5/krb5_asn.c | ||
560 | |||
561 | # lhash | ||
562 | libcrypto_la_SOURCES += lhash/lh_stats.c | ||
563 | libcrypto_la_SOURCES += lhash/lhash.c | ||
564 | |||
565 | # md4 | ||
566 | libcrypto_la_SOURCES += md4/md4_dgst.c | ||
567 | libcrypto_la_SOURCES += md4/md4_one.c | ||
568 | noinst_HEADERS += md4/md4_locl.h | ||
569 | |||
570 | # md5 | ||
571 | libcrypto_la_SOURCES += md5/md5_dgst.c | ||
572 | libcrypto_la_SOURCES += md5/md5_one.c | ||
573 | noinst_HEADERS += md5/md5_locl.h | ||
574 | |||
575 | # mdc2 | ||
576 | libcrypto_la_SOURCES += mdc2/mdc2_one.c | ||
577 | libcrypto_la_SOURCES += mdc2/mdc2dgst.c | ||
578 | |||
579 | # modes | ||
580 | libcrypto_la_SOURCES += modes/cbc128.c | ||
581 | libcrypto_la_SOURCES += modes/ccm128.c | ||
582 | libcrypto_la_SOURCES += modes/cfb128.c | ||
583 | libcrypto_la_SOURCES += modes/ctr128.c | ||
584 | libcrypto_la_SOURCES += modes/cts128.c | ||
585 | libcrypto_la_SOURCES += modes/gcm128.c | ||
586 | libcrypto_la_SOURCES += modes/ofb128.c | ||
587 | libcrypto_la_SOURCES += modes/xts128.c | ||
588 | noinst_HEADERS += modes/modes_lcl.h | ||
589 | |||
590 | # objects | ||
591 | libcrypto_la_SOURCES += objects/o_names.c | ||
592 | libcrypto_la_SOURCES += objects/obj_dat.c | ||
593 | libcrypto_la_SOURCES += objects/obj_err.c | ||
594 | libcrypto_la_SOURCES += objects/obj_lib.c | ||
595 | libcrypto_la_SOURCES += objects/obj_xref.c | ||
596 | noinst_HEADERS += objects/obj_dat.h | ||
597 | noinst_HEADERS += objects/obj_xref.h | ||
598 | |||
599 | # ocsp | ||
600 | libcrypto_la_SOURCES += ocsp/ocsp_asn.c | ||
601 | libcrypto_la_SOURCES += ocsp/ocsp_cl.c | ||
602 | libcrypto_la_SOURCES += ocsp/ocsp_err.c | ||
603 | libcrypto_la_SOURCES += ocsp/ocsp_ext.c | ||
604 | libcrypto_la_SOURCES += ocsp/ocsp_ht.c | ||
605 | libcrypto_la_SOURCES += ocsp/ocsp_lib.c | ||
606 | libcrypto_la_SOURCES += ocsp/ocsp_prn.c | ||
607 | libcrypto_la_SOURCES += ocsp/ocsp_srv.c | ||
608 | libcrypto_la_SOURCES += ocsp/ocsp_vfy.c | ||
609 | |||
610 | # pem | ||
611 | libcrypto_la_SOURCES += pem/pem_all.c | ||
612 | libcrypto_la_SOURCES += pem/pem_err.c | ||
613 | libcrypto_la_SOURCES += pem/pem_info.c | ||
614 | libcrypto_la_SOURCES += pem/pem_lib.c | ||
615 | libcrypto_la_SOURCES += pem/pem_oth.c | ||
616 | libcrypto_la_SOURCES += pem/pem_pk8.c | ||
617 | libcrypto_la_SOURCES += pem/pem_pkey.c | ||
618 | libcrypto_la_SOURCES += pem/pem_seal.c | ||
619 | libcrypto_la_SOURCES += pem/pem_sign.c | ||
620 | libcrypto_la_SOURCES += pem/pem_x509.c | ||
621 | libcrypto_la_SOURCES += pem/pem_xaux.c | ||
622 | libcrypto_la_SOURCES += pem/pvkfmt.c | ||
623 | |||
624 | # pkcs12 | ||
625 | libcrypto_la_SOURCES += pkcs12/p12_add.c | ||
626 | libcrypto_la_SOURCES += pkcs12/p12_asn.c | ||
627 | libcrypto_la_SOURCES += pkcs12/p12_attr.c | ||
628 | libcrypto_la_SOURCES += pkcs12/p12_crpt.c | ||
629 | libcrypto_la_SOURCES += pkcs12/p12_crt.c | ||
630 | libcrypto_la_SOURCES += pkcs12/p12_decr.c | ||
631 | libcrypto_la_SOURCES += pkcs12/p12_init.c | ||
632 | libcrypto_la_SOURCES += pkcs12/p12_key.c | ||
633 | libcrypto_la_SOURCES += pkcs12/p12_kiss.c | ||
634 | libcrypto_la_SOURCES += pkcs12/p12_mutl.c | ||
635 | libcrypto_la_SOURCES += pkcs12/p12_npas.c | ||
636 | libcrypto_la_SOURCES += pkcs12/p12_p8d.c | ||
637 | libcrypto_la_SOURCES += pkcs12/p12_p8e.c | ||
638 | libcrypto_la_SOURCES += pkcs12/p12_utl.c | ||
639 | libcrypto_la_SOURCES += pkcs12/pk12err.c | ||
640 | |||
641 | # pkcs7 | ||
642 | libcrypto_la_SOURCES += pkcs7/bio_pk7.c | ||
643 | libcrypto_la_SOURCES += pkcs7/pk7_asn1.c | ||
644 | libcrypto_la_SOURCES += pkcs7/pk7_attr.c | ||
645 | libcrypto_la_SOURCES += pkcs7/pk7_doit.c | ||
646 | libcrypto_la_SOURCES += pkcs7/pk7_lib.c | ||
647 | libcrypto_la_SOURCES += pkcs7/pk7_mime.c | ||
648 | libcrypto_la_SOURCES += pkcs7/pk7_smime.c | ||
649 | libcrypto_la_SOURCES += pkcs7/pkcs7err.c | ||
650 | |||
651 | # poly1305 | ||
652 | EXTRA_libcrypto_la_SOURCES += poly1305/poly1305-donna.c | ||
653 | libcrypto_la_SOURCES += poly1305/poly1305.c | ||
654 | |||
655 | # rand | ||
656 | libcrypto_la_SOURCES += rand/rand_err.c | ||
657 | libcrypto_la_SOURCES += rand/rand_lib.c | ||
658 | libcrypto_la_SOURCES += rand/randfile.c | ||
659 | |||
660 | # rc2 | ||
661 | libcrypto_la_SOURCES += rc2/rc2_cbc.c | ||
662 | libcrypto_la_SOURCES += rc2/rc2_ecb.c | ||
663 | libcrypto_la_SOURCES += rc2/rc2_skey.c | ||
664 | libcrypto_la_SOURCES += rc2/rc2cfb64.c | ||
665 | libcrypto_la_SOURCES += rc2/rc2ofb64.c | ||
666 | noinst_HEADERS += rc2/rc2_locl.h | ||
667 | |||
668 | # rc4 | ||
669 | libcrypto_la_SOURCES += rc4/rc4_enc.c | ||
670 | libcrypto_la_SOURCES += rc4/rc4_skey.c | ||
671 | noinst_HEADERS += rc4/rc4_locl.h | ||
672 | |||
673 | # ripemd | ||
674 | libcrypto_la_SOURCES += ripemd/rmd_dgst.c | ||
675 | libcrypto_la_SOURCES += ripemd/rmd_one.c | ||
676 | noinst_HEADERS += ripemd/rmd_locl.h | ||
677 | noinst_HEADERS += ripemd/rmdconst.h | ||
678 | |||
679 | # rsa | ||
680 | libcrypto_la_SOURCES += rsa/rsa_ameth.c | ||
681 | libcrypto_la_SOURCES += rsa/rsa_asn1.c | ||
682 | libcrypto_la_SOURCES += rsa/rsa_chk.c | ||
683 | libcrypto_la_SOURCES += rsa/rsa_crpt.c | ||
684 | libcrypto_la_SOURCES += rsa/rsa_depr.c | ||
685 | libcrypto_la_SOURCES += rsa/rsa_eay.c | ||
686 | libcrypto_la_SOURCES += rsa/rsa_err.c | ||
687 | libcrypto_la_SOURCES += rsa/rsa_gen.c | ||
688 | libcrypto_la_SOURCES += rsa/rsa_lib.c | ||
689 | libcrypto_la_SOURCES += rsa/rsa_none.c | ||
690 | libcrypto_la_SOURCES += rsa/rsa_oaep.c | ||
691 | libcrypto_la_SOURCES += rsa/rsa_pk1.c | ||
692 | libcrypto_la_SOURCES += rsa/rsa_pmeth.c | ||
693 | libcrypto_la_SOURCES += rsa/rsa_prn.c | ||
694 | libcrypto_la_SOURCES += rsa/rsa_pss.c | ||
695 | libcrypto_la_SOURCES += rsa/rsa_saos.c | ||
696 | libcrypto_la_SOURCES += rsa/rsa_sign.c | ||
697 | libcrypto_la_SOURCES += rsa/rsa_ssl.c | ||
698 | libcrypto_la_SOURCES += rsa/rsa_x931.c | ||
699 | noinst_HEADERS += rsa/rsa_locl.h | ||
700 | |||
701 | # sha | ||
702 | libcrypto_la_SOURCES += sha/sha1_one.c | ||
703 | libcrypto_la_SOURCES += sha/sha1dgst.c | ||
704 | libcrypto_la_SOURCES += sha/sha256.c | ||
705 | libcrypto_la_SOURCES += sha/sha512.c | ||
706 | libcrypto_la_SOURCES += sha/sha_dgst.c | ||
707 | libcrypto_la_SOURCES += sha/sha_one.c | ||
708 | noinst_HEADERS += sha/sha_locl.h | ||
709 | |||
710 | # stack | ||
711 | libcrypto_la_SOURCES += stack/stack.c | ||
712 | |||
713 | # ts | ||
714 | libcrypto_la_SOURCES += ts/ts_asn1.c | ||
715 | libcrypto_la_SOURCES += ts/ts_conf.c | ||
716 | libcrypto_la_SOURCES += ts/ts_err.c | ||
717 | libcrypto_la_SOURCES += ts/ts_lib.c | ||
718 | libcrypto_la_SOURCES += ts/ts_req_print.c | ||
719 | libcrypto_la_SOURCES += ts/ts_req_utils.c | ||
720 | libcrypto_la_SOURCES += ts/ts_rsp_print.c | ||
721 | libcrypto_la_SOURCES += ts/ts_rsp_sign.c | ||
722 | libcrypto_la_SOURCES += ts/ts_rsp_utils.c | ||
723 | libcrypto_la_SOURCES += ts/ts_rsp_verify.c | ||
724 | libcrypto_la_SOURCES += ts/ts_verify_ctx.c | ||
725 | |||
726 | # txt_db | ||
727 | libcrypto_la_SOURCES += txt_db/txt_db.c | ||
728 | |||
729 | # ui | ||
730 | libcrypto_la_SOURCES += ui/ui_err.c | ||
731 | libcrypto_la_SOURCES += ui/ui_lib.c | ||
732 | if !HOST_WIN | ||
733 | libcrypto_la_SOURCES += ui/ui_openssl.c | ||
734 | endif | ||
735 | if HOST_WIN | ||
736 | libcrypto_la_SOURCES += ui/ui_openssl_win.c | ||
737 | endif | ||
738 | libcrypto_la_SOURCES += ui/ui_util.c | ||
739 | noinst_HEADERS += ui/ui_locl.h | ||
740 | |||
741 | # whrlpool | ||
742 | libcrypto_la_SOURCES += whrlpool/wp_block.c | ||
743 | libcrypto_la_SOURCES += whrlpool/wp_dgst.c | ||
744 | noinst_HEADERS += whrlpool/wp_locl.h | ||
745 | |||
746 | # x509 | ||
747 | libcrypto_la_SOURCES += x509/by_dir.c | ||
748 | libcrypto_la_SOURCES += x509/by_file.c | ||
749 | libcrypto_la_SOURCES += x509/x509_att.c | ||
750 | libcrypto_la_SOURCES += x509/x509_cmp.c | ||
751 | libcrypto_la_SOURCES += x509/x509_d2.c | ||
752 | libcrypto_la_SOURCES += x509/x509_def.c | ||
753 | libcrypto_la_SOURCES += x509/x509_err.c | ||
754 | libcrypto_la_SOURCES += x509/x509_ext.c | ||
755 | libcrypto_la_SOURCES += x509/x509_lu.c | ||
756 | libcrypto_la_SOURCES += x509/x509_obj.c | ||
757 | libcrypto_la_SOURCES += x509/x509_r2x.c | ||
758 | libcrypto_la_SOURCES += x509/x509_req.c | ||
759 | libcrypto_la_SOURCES += x509/x509_set.c | ||
760 | libcrypto_la_SOURCES += x509/x509_trs.c | ||
761 | libcrypto_la_SOURCES += x509/x509_txt.c | ||
762 | libcrypto_la_SOURCES += x509/x509_v3.c | ||
763 | libcrypto_la_SOURCES += x509/x509_vfy.c | ||
764 | libcrypto_la_SOURCES += x509/x509_vpm.c | ||
765 | libcrypto_la_SOURCES += x509/x509cset.c | ||
766 | libcrypto_la_SOURCES += x509/x509name.c | ||
767 | libcrypto_la_SOURCES += x509/x509rset.c | ||
768 | libcrypto_la_SOURCES += x509/x509spki.c | ||
769 | libcrypto_la_SOURCES += x509/x509type.c | ||
770 | libcrypto_la_SOURCES += x509/x_all.c | ||
771 | noinst_HEADERS += x509/x509_lcl.h | ||
772 | |||
773 | # x509v3 | ||
774 | libcrypto_la_SOURCES += x509v3/pcy_cache.c | ||
775 | libcrypto_la_SOURCES += x509v3/pcy_data.c | ||
776 | libcrypto_la_SOURCES += x509v3/pcy_lib.c | ||
777 | libcrypto_la_SOURCES += x509v3/pcy_map.c | ||
778 | libcrypto_la_SOURCES += x509v3/pcy_node.c | ||
779 | libcrypto_la_SOURCES += x509v3/pcy_tree.c | ||
780 | libcrypto_la_SOURCES += x509v3/v3_akey.c | ||
781 | libcrypto_la_SOURCES += x509v3/v3_akeya.c | ||
782 | libcrypto_la_SOURCES += x509v3/v3_alt.c | ||
783 | libcrypto_la_SOURCES += x509v3/v3_bcons.c | ||
784 | libcrypto_la_SOURCES += x509v3/v3_bitst.c | ||
785 | libcrypto_la_SOURCES += x509v3/v3_conf.c | ||
786 | libcrypto_la_SOURCES += x509v3/v3_cpols.c | ||
787 | libcrypto_la_SOURCES += x509v3/v3_crld.c | ||
788 | libcrypto_la_SOURCES += x509v3/v3_enum.c | ||
789 | libcrypto_la_SOURCES += x509v3/v3_extku.c | ||
790 | libcrypto_la_SOURCES += x509v3/v3_genn.c | ||
791 | libcrypto_la_SOURCES += x509v3/v3_ia5.c | ||
792 | libcrypto_la_SOURCES += x509v3/v3_info.c | ||
793 | libcrypto_la_SOURCES += x509v3/v3_int.c | ||
794 | libcrypto_la_SOURCES += x509v3/v3_lib.c | ||
795 | libcrypto_la_SOURCES += x509v3/v3_ncons.c | ||
796 | libcrypto_la_SOURCES += x509v3/v3_ocsp.c | ||
797 | libcrypto_la_SOURCES += x509v3/v3_pci.c | ||
798 | libcrypto_la_SOURCES += x509v3/v3_pcia.c | ||
799 | libcrypto_la_SOURCES += x509v3/v3_pcons.c | ||
800 | libcrypto_la_SOURCES += x509v3/v3_pku.c | ||
801 | libcrypto_la_SOURCES += x509v3/v3_pmaps.c | ||
802 | libcrypto_la_SOURCES += x509v3/v3_prn.c | ||
803 | libcrypto_la_SOURCES += x509v3/v3_purp.c | ||
804 | libcrypto_la_SOURCES += x509v3/v3_skey.c | ||
805 | libcrypto_la_SOURCES += x509v3/v3_sxnet.c | ||
806 | libcrypto_la_SOURCES += x509v3/v3_utl.c | ||
807 | libcrypto_la_SOURCES += x509v3/v3err.c | ||
808 | noinst_HEADERS += x509v3/ext_dat.h | ||
809 | noinst_HEADERS += x509v3/pcy_int.h | ||