diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-03-28 17:35:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-03-28 17:35:10 +0000 |
commit | 85d190436bee0a39d5c12a32c419929402e28758 (patch) | |
tree | ad537ef0e93f04f851c37a5430140d9ac8a548b7 /lib/libc/md/md4c.c | |
parent | 16ecdc66c47a6224cb52cd6bb98ced4322762a06 (diff) |
Expose MDXTransform functions to be consistent with sha1 and rmd160.
Diffstat (limited to 'lib/libc/md/md4c.c')
-rw-r--r-- | lib/libc/md/md4c.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/md/md4c.c b/lib/libc/md/md4c.c index 75e84d52384..63131d8ed79 100644 --- a/lib/libc/md/md4c.c +++ b/lib/libc/md/md4c.c @@ -22,7 +22,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: md4c.c,v 1.11 1997/07/23 21:17:55 kstailey Exp $"; +static char rcsid[] = "$OpenBSD: md4c.c,v 1.12 2000/03/28 17:35:09 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <string.h> @@ -47,8 +47,6 @@ typedef unsigned char *POINTER; #define S33 11 #define S34 15 -static void MD4Transform __P ((u_int32_t [4], const unsigned char [64])); - #if BYTE_ORDER == LITTLE_ENDIAN #define Encode memcpy #define Decode memcpy @@ -218,7 +216,7 @@ MD4_CTX *context; /* context */ /* MD4 basic transformation. Transforms state based on block. */ -static void MD4Transform (state, block) +void MD4Transform (state, block) u_int32_t state[4]; const unsigned char block[64]; { |