summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/md5/md5_dgst.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/md5/md5_dgst.c')
-rw-r--r--src/lib/libcrypto/md5/md5_dgst.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/md5/md5_dgst.c b/src/lib/libcrypto/md5/md5_dgst.c
index 19a2b01e17..b0eb47219a 100644
--- a/src/lib/libcrypto/md5/md5_dgst.c
+++ b/src/lib/libcrypto/md5/md5_dgst.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: md5_dgst.c,v 1.17 2023/07/08 06:50:38 jsing Exp $ */ 1/* $OpenBSD: md5_dgst.c,v 1.18 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 *
@@ -100,6 +100,9 @@ __END_HIDDEN_DECLS
100#define HASH_BLOCK_DATA_ORDER md5_block_data_order 100#define HASH_BLOCK_DATA_ORDER md5_block_data_order
101 101
102#include "md32_common.h" 102#include "md32_common.h"
103LCRYPTO_ALIAS(MD5_Update);
104LCRYPTO_ALIAS(MD5_Transform);
105LCRYPTO_ALIAS(MD5_Final);
103 106
104/* 107/*
105#define F(x,y,z) (((x) & (y)) | ((~(x)) & (z))) 108#define F(x,y,z) (((x) & (y)) | ((~(x)) & (z)))
@@ -153,6 +156,7 @@ MD5_Init(MD5_CTX *c)
153 c->D = INIT_DATA_D; 156 c->D = INIT_DATA_D;
154 return 1; 157 return 1;
155} 158}
159LCRYPTO_ALIAS(MD5_Init);
156 160
157#ifndef md5_block_data_order 161#ifndef md5_block_data_order
158#ifdef X 162#ifdef X