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 /include/md4.h | |
parent | 16ecdc66c47a6224cb52cd6bb98ced4322762a06 (diff) |
Expose MDXTransform functions to be consistent with sha1 and rmd160.
Diffstat (limited to 'include/md4.h')
-rw-r--r-- | include/md4.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/md4.h b/include/md4.h index b8874172fc9..ca3ff1664c1 100644 --- a/include/md4.h +++ b/include/md4.h @@ -1,5 +1,5 @@ /* MD4.H - header file for MD4C.C - * $OpenBSD: md4.h,v 1.4 1996/11/24 02:25:57 niklas Exp $ + * $OpenBSD: md4.h,v 1.5 2000/03/28 17:35:07 millert Exp $ */ /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All @@ -36,6 +36,7 @@ typedef struct MD4Context { void MD4Init __P((MD4_CTX *)); void MD4Update __P((MD4_CTX *, const unsigned char *, size_t)); void MD4Final __P((unsigned char [16], MD4_CTX *)); +void MD4Transform __P ((u_int32_t [4], const unsigned char [64])); char * MD4End __P((MD4_CTX *, char *)); char * MD4File __P((char *, char *)); char * MD4Data __P((const unsigned char *, size_t, char *)); |