1# $FreeBSD$ 2 3SHLIB_NAME?= legacy.so 4 5SRCS= legacyprov.c prov_running.c 6 7# common 8SRCS+= provider_err.c provider_ctx.c 9SRCS+= provider_util.c 10 11# ciphers 12SRCS+= ciphercommon.c ciphercommon_hw.c ciphercommon_block.c \ 13 ciphercommon_gcm.c ciphercommon_gcm_hw.c \ 14 ciphercommon_ccm.c ciphercommon_ccm_hw.c 15SRCS+= cipher_desx.c cipher_desx_hw.c cipher_des.c cipher_des_hw.c 16SRCS+= cipher_tdes_common.c 17SRCS+= cipher_blowfish.c cipher_blowfish_hw.c 18SRCS+= cipher_cast5.c cipher_cast5_hw.c 19SRCS+= cipher_rc2.c cipher_rc2_hw.c 20SRCS+= cipher_rc4.c cipher_rc4_hw.c 21SRCS+= cipher_rc4_hmac_md5.c cipher_rc4_hmac_md5_hw.c 22SRCS+= cipher_seed.c cipher_seed_hw.c 23 24# digests 25SRCS+= digestcommon.c 26SRCS+= md4_prov.c wp_prov.c ripemd_prov.c 27 28# kdfs 29SRCS+= pbkdf1.c 30 31# ssl 32SRCS+= record/tls_pad.c 33 34.include <bsd.lib.mk> 35 36.PATH: ${LCRYPTO_SRC}/providers/implementations/ciphers \ 37 ${LCRYPTO_SRC}/providers/implementations/digests \ 38 ${LCRYPTO_SRC}/providers/implementations/kdfs \ 39 ${LCRYPTO_SRC}/ssl 40