diff options
author | Doug Hogan <doug@cvs.openbsd.org> | 2015-09-13 23:36:22 +0000 |
---|---|---|
committer | Doug Hogan <doug@cvs.openbsd.org> | 2015-09-13 23:36:22 +0000 |
commit | e2a4b90263ff96cb39366897fa71dbdebe41a29e (patch) | |
tree | 96a52c50a9031d2740ac486857ca48fcfa497fc0 /lib/libcrypto | |
parent | dc2dd1175f34347e5319778871873291e8932455 (diff) |
Remove MD4 support from LibreSSL.
MD4 should have been removed a long time ago. Also, RFC 6150 moved it to
historic in 2011. Rides the major crank from removing SHA-0.
Discussed with many including beck@, millert@, djm@, sthen@
ok jsing@, input + ok bcook@
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/crypto/Makefile | 9 | ||||
-rw-r--r-- | lib/libcrypto/man/Makefile | 12 |
2 files changed, 3 insertions, 18 deletions
diff --git a/lib/libcrypto/crypto/Makefile b/lib/libcrypto/crypto/Makefile index 76a099cd5bf..121aaf1d0a8 100644 --- a/lib/libcrypto/crypto/Makefile +++ b/lib/libcrypto/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.63 2015/09/13 21:09:56 doug Exp $ +# $OpenBSD: Makefile,v 1.64 2015/09/13 23:36:21 doug Exp $ LIB= crypto @@ -144,7 +144,7 @@ SRCS+= encode.c digest.c evp_enc.c evp_key.c SRCS+= e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c SRCS+= e_rc4.c e_aes.c names.c SRCS+= e_xcbc_d.c e_rc2.c e_cast.c -SRCS+= m_null.c m_md4.c m_md5.c m_sha1.c m_wp.c +SRCS+= m_null.c m_md5.c m_sha1.c m_wp.c SRCS+= m_dss.c m_dss1.c m_ripemd.c m_ecdsa.c SRCS+= p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c SRCS+= bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c @@ -173,9 +173,6 @@ SRCS+= krb5_asn.c # lhash/ SRCS+= lhash.c lh_stats.c -# md4/ -SRCS+= md4_dgst.c md4_one.c - # md5/ SRCS+= md5_dgst.c md5_one.c @@ -286,7 +283,6 @@ SRCS+= pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c ${LCRYPTO_SRC}/idea \ ${LCRYPTO_SRC}/krb5 \ ${LCRYPTO_SRC}/lhash \ - ${LCRYPTO_SRC}/md4 \ ${LCRYPTO_SRC}/md5 \ ${LCRYPTO_SRC}/modes \ ${LCRYPTO_SRC}/objects \ @@ -344,7 +340,6 @@ HDRS=\ crypto/idea/idea.h \ crypto/krb5/krb5_asn.h \ crypto/lhash/lhash.h \ - crypto/md4/md4.h \ crypto/md5/md5.h \ crypto/modes/modes.h \ crypto/objects/objects.h \ diff --git a/lib/libcrypto/man/Makefile b/lib/libcrypto/man/Makefile index c968943cc03..101f79b6ffd 100644 --- a/lib/libcrypto/man/Makefile +++ b/lib/libcrypto/man/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.21 2015/06/20 01:07:24 doug Exp $ +# $OpenBSD: Makefile,v 1.22 2015/09/13 23:36:21 doug Exp $ .include <bsd.own.mk> # for NOMAN @@ -642,11 +642,9 @@ MLINKS+=\ EVP_DigestInit.3 EVP_get_digestbyname.3 \ EVP_DigestInit.3 EVP_get_digestbynid.3 \ EVP_DigestInit.3 EVP_get_digestbyobj.3 \ - EVP_DigestInit.3 EVP_md2.3 \ EVP_DigestInit.3 EVP_md5.3 \ EVP_DigestInit.3 EVP_md_null.3 \ EVP_DigestInit.3 EVP_ripemd160.3 \ - EVP_DigestInit.3 EVP_sha.3 \ EVP_DigestInit.3 EVP_sha1.3 \ EVP_DigestSignInit.3 EVP_DigestSignUpdate.3 \ EVP_DigestSignInit.3 EVP_DigestSignFinal.3 \ @@ -795,14 +793,6 @@ MLINKS+=\ HMAC.3 HMAC_Init.3 \ HMAC.3 HMAC_Update.3 \ HMAC.3 HMAC_cleanup.3 \ - MD5.3 MD2.3 \ - MD5.3 MD2_Final.3 \ - MD5.3 MD2_Init.3 \ - MD5.3 MD2_Update.3 \ - MD5.3 MD4.3 \ - MD5.3 MD4_Final.3 \ - MD5.3 MD4_Init.3 \ - MD5.3 MD4_Update.3 \ MD5.3 MD5_Final.3 \ MD5.3 MD5_Init.3 \ MD5.3 MD5_Update.3 \ |