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