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/md5.h | |
parent | 16ecdc66c47a6224cb52cd6bb98ced4322762a06 (diff) |
Expose MDXTransform functions to be consistent with sha1 and rmd160.
Diffstat (limited to 'include/md5.h')
-rw-r--r-- | include/md5.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/md5.h b/include/md5.h index 638371330d3..3d67a5cb5e5 100644 --- a/include/md5.h +++ b/include/md5.h @@ -1,5 +1,5 @@ /* MD5.H - header file for MD5C.C - * $OpenBSD: md5.h,v 1.4 1996/11/24 02:25:57 niklas Exp $ + * $OpenBSD: md5.h,v 1.5 2000/03/28 17:35:08 millert Exp $ */ /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All @@ -37,6 +37,7 @@ typedef struct MD5Context { void MD5Init __P((MD5_CTX *)); void MD5Update __P((MD5_CTX *, const unsigned char *, size_t)); void MD5Final __P((unsigned char [16], MD5_CTX *)); +void MD5Transform __P ((u_int32_t [4], const unsigned char [64])); char * MD5End __P((MD5_CTX *, char *)); char * MD5File __P((char *, char *)); char * MD5Data __P((const unsigned char *, size_t, char *)); |