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