Changeset View
Standalone View
secure/lib/libcrypto/modules/legacy/Makefile
| SHLIB_NAME?= legacy.so | SHLIB_NAME?= legacy.so | ||||
| LIBADD= crypto | LIBADD= crypto | ||||
| SRCS+= legacyprov.c prov_running.c params_idx.c | SRCS+= legacyprov.c prov_running.c | ||||
| # ciphers | # ciphers | ||||
gordon: Missing:
cipher_idea.c
cipher_idea_hw.c
| |||||
Done Inline ActionsThe IDEA algorithm is explicitly disabled in crypto/openssl/BSDmakefile. Interestingly enough we used to ship with IDEA on in stable/13, but disabled it in stable/14. Huh... Not sure if it should be enabled or disabled given documentation about it being broken back in 2011/2012, but I feel like enabling it is outside the scope of this review (but possibly worthy addressing as a separate commit). ngie: The IDEA algorithm is explicitly disabled in `crypto/openssl/BSDmakefile`.
Interestingly… | |||||
| SRCS+= ciphercommon.c ciphercommon_hw.c ciphercommon_block.c \ | SRCS+= ciphercommon.c ciphercommon_hw.c ciphercommon_block.c \ | ||||
| ciphercommon_gcm.c ciphercommon_gcm_hw.c \ | ciphercommon_gcm.c ciphercommon_gcm_hw.c \ | ||||
| ciphercommon_ccm.c ciphercommon_ccm_hw.c | ciphercommon_ccm.c ciphercommon_ccm_hw.c | ||||
| SRCS+= cipher_desx.c cipher_desx_hw.c cipher_des.c cipher_des_hw.c | SRCS+= cipher_desx.c cipher_desx_hw.c cipher_des.c cipher_des_hw.c | ||||
| SRCS+= cipher_tdes_common.c | SRCS+= cipher_tdes_common.c | ||||
| SRCS+= cipher_blowfish.c cipher_blowfish_hw.c | SRCS+= cipher_blowfish.c cipher_blowfish_hw.c | ||||
| SRCS+= cipher_cast5.c cipher_cast5_hw.c | SRCS+= cipher_cast5.c cipher_cast5_hw.c | ||||
| SRCS+= cipher_rc2.c cipher_rc2_hw.c | SRCS+= cipher_rc2.c cipher_rc2_hw.c | ||||
| SRCS+= cipher_rc4.c cipher_rc4_hw.c | SRCS+= cipher_rc4.c cipher_rc4_hw.c | ||||
| SRCS+= cipher_rc4_hmac_md5.c cipher_rc4_hmac_md5_hw.c | SRCS+= cipher_rc4_hmac_md5.c cipher_rc4_hmac_md5_hw.c | ||||
| SRCS+= cipher_seed.c cipher_seed_hw.c | SRCS+= cipher_seed.c cipher_seed_hw.c | ||||
| # digests | # crypto | ||||
| SRCS+= cpuid.c | |||||
| SRCS+= ctype.c | |||||
| # crypto/des | |||||
| SRCS+= des_enc.c | |||||
| SRCS+= fcrypt_b.c | |||||
| # crypto/md5 | |||||
| SRCS+= md5_dgst.c | |||||
| SRCS+= md5_one.c | |||||
| SRCS+= md5_sha1.c | |||||
| # providers/implementations/digests | |||||
Not Done Inline ActionsMissing: gordon: Missing:
mdc2_prov.c | |||||
Done Inline Actionsmdc2 is also disabled explicitly in crypto/openssl/BSDmakefile, for consistency with the original delivered 3.0/3.5 product. ngie: mdc2 is also disabled explicitly in crypto/openssl/BSDmakefile, for consistency with the… | |||||
| SRCS+= digestcommon.c | SRCS+= digestcommon.c | ||||
| SRCS+= md4_prov.c wp_prov.c ripemd_prov.c | SRCS+= md4_prov.c wp_prov.c ripemd_prov.c | ||||
| # kdfs | # providers/implementations/kdfs | ||||
| SRCS+= pbkdf1.c pvkkdf.c | SRCS+= pbkdf1.c | ||||
| SRCS+= pvkkdf.c | |||||
| # common | |||||
| SRCS+= provider_err.c provider_ctx.c | |||||
| SRCS+= provider_util.c | |||||
| SRCS+= tls_pad.c | |||||
| # This is needed so the provider can be loaded for us. | |||||
| # | |||||
| # There's a discrepancy between how this provider gets built in OpenSSL proper | |||||
| # and FreeBSD. | |||||
| SRCS+= params_idx.c | |||||
| .include <bsd.lib.mk> | .include <bsd.lib.mk> | ||||
| .PATH: ${LCRYPTO_SRC}/crypto \ | .PATH: ${LCRYPTO_SRC}/crypto \ | ||||
| ${LCRYPTO_SRC}/crypto/des \ | |||||
| ${LCRYPTO_SRC}/crypto/md5 \ | |||||
| ${LCRYPTO_SRC}/providers \ | |||||
| ${LCRYPTO_SRC}/providers/common \ | |||||
| ${LCRYPTO_SRC}/providers/implementations/ciphers \ | ${LCRYPTO_SRC}/providers/implementations/ciphers \ | ||||
| ${LCRYPTO_SRC}/providers/implementations/digests \ | ${LCRYPTO_SRC}/providers/implementations/digests \ | ||||
| ${LCRYPTO_SRC}/providers/implementations/kdfs \ | ${LCRYPTO_SRC}/providers/implementations/kdfs \ | ||||
| ${LCRYPTO_SRC}/ssl | ${LCRYPTO_SRC}/ssl \ | ||||
| ${LCRYPTO_SRC}/ssl/record/methods \ | |||||
Missing:
cipher_idea.c
cipher_idea_hw.c