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