summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/m_md4.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/m_md4.c')
-rw-r--r--src/lib/libcrypto/evp/m_md4.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libcrypto/evp/m_md4.c b/src/lib/libcrypto/evp/m_md4.c
index 5729807986..977565283f 100644
--- a/src/lib/libcrypto/evp/m_md4.c
+++ b/src/lib/libcrypto/evp/m_md4.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: m_md4.c,v 1.17 2021/12/12 21:30:13 tb Exp $ */ 1/* $OpenBSD: m_md4.c,v 1.18 2022/01/14 08:38:05 tb 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 *
@@ -101,13 +101,6 @@ static const EVP_MD md4_md = {
101 .final = final, 101 .final = final,
102 .copy = NULL, 102 .copy = NULL,
103 .cleanup = NULL, 103 .cleanup = NULL,
104#ifndef OPENSSL_NO_RSA
105 .sign = (evp_sign_method *)RSA_sign,
106 .verify = (evp_verify_method *)RSA_verify,
107 .required_pkey_type = {
108 EVP_PKEY_RSA, EVP_PKEY_RSA2, 0, 0,
109 },
110#endif
111 .block_size = MD4_CBLOCK, 104 .block_size = MD4_CBLOCK,
112 .ctx_size = sizeof(EVP_MD *) + sizeof(MD4_CTX), 105 .ctx_size = sizeof(EVP_MD *) + sizeof(MD4_CTX),
113}; 106};