summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/md4/md4_dgst.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/md4/md4_dgst.c')
-rw-r--r--src/lib/libcrypto/md4/md4_dgst.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/md4/md4_dgst.c b/src/lib/libcrypto/md4/md4_dgst.c
index dedb5902cd..e6fff4893d 100644
--- a/src/lib/libcrypto/md4/md4_dgst.c
+++ b/src/lib/libcrypto/md4/md4_dgst.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: md4_dgst.c,v 1.19 2023/07/08 06:47:26 jsing Exp $ */ 1/* $OpenBSD: md4_dgst.c,v 1.20 2023/07/08 10:45:57 beck 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 *
@@ -89,6 +89,9 @@ __END_HIDDEN_DECLS
89#define HASH_BLOCK_DATA_ORDER md4_block_data_order 89#define HASH_BLOCK_DATA_ORDER md4_block_data_order
90 90
91#include "md32_common.h" 91#include "md32_common.h"
92LCRYPTO_ALIAS(MD4_Update);
93LCRYPTO_ALIAS(MD4_Final);
94LCRYPTO_ALIAS(MD4_Transform);
92 95
93/* 96/*
94#define F(x,y,z) (((x) & (y)) | ((~(x)) & (z))) 97#define F(x,y,z) (((x) & (y)) | ((~(x)) & (z)))
@@ -133,6 +136,7 @@ MD4_Init(MD4_CTX *c)
133 c->D = INIT_DATA_D; 136 c->D = INIT_DATA_D;
134 return 1; 137 return 1;
135} 138}
139LCRYPTO_ALIAS(MD4_Init);
136 140
137#ifndef md4_block_data_order 141#ifndef md4_block_data_order
138#ifdef X 142#ifdef X