diff options
author | doug <> | 2015-09-13 23:36:21 +0000 |
---|---|---|
committer | doug <> | 2015-09-13 23:36:21 +0000 |
commit | 5e0ea5055e21b1f3526587a5a17702ab3fee3e49 (patch) | |
tree | 804e21f7971977c17340feffa6cc8840e09b3cfe /src/usr.bin/openssl/openssl.c | |
parent | c221c5094439136f46f34e398f2908ca9b5bfb1d (diff) | |
download | openbsd-5e0ea5055e21b1f3526587a5a17702ab3fee3e49.tar.gz openbsd-5e0ea5055e21b1f3526587a5a17702ab3fee3e49.tar.bz2 openbsd-5e0ea5055e21b1f3526587a5a17702ab3fee3e49.zip |
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 'src/usr.bin/openssl/openssl.c')
-rw-r--r-- | src/usr.bin/openssl/openssl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/usr.bin/openssl/openssl.c b/src/usr.bin/openssl/openssl.c index d0c0ec0551..1bda338356 100644 --- a/src/usr.bin/openssl/openssl.c +++ b/src/usr.bin/openssl/openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: openssl.c,v 1.10 2015/09/13 12:41:01 bcook Exp $ */ | 1 | /* $OpenBSD: openssl.c,v 1.11 2015/09/13 23:36:21 doug Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -217,9 +217,6 @@ FUNCTION functions[] = { | |||
217 | { FUNC_TYPE_MD, "streebog256", dgst_main }, | 217 | { FUNC_TYPE_MD, "streebog256", dgst_main }, |
218 | { FUNC_TYPE_MD, "streebog512", dgst_main }, | 218 | { FUNC_TYPE_MD, "streebog512", dgst_main }, |
219 | #endif | 219 | #endif |
220 | #ifndef OPENSSL_NO_MD4 | ||
221 | { FUNC_TYPE_MD, "md4", dgst_main }, | ||
222 | #endif | ||
223 | #ifndef OPENSSL_NO_MD5 | 220 | #ifndef OPENSSL_NO_MD5 |
224 | { FUNC_TYPE_MD, "md5", dgst_main }, | 221 | { FUNC_TYPE_MD, "md5", dgst_main }, |
225 | #endif | 222 | #endif |