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