Browse Source

Expose MDXTransform functions to be consistent with sha1 and rmd160.

OPENBSD_2_7
millert 24 years ago
parent
commit
300af685b4
2 changed files with 4 additions and 2 deletions
  1. +2
    -1
      src/include/md4.h
  2. +2
    -1
      src/include/md5.h

+ 2
- 1
src/include/md4.h View File

@ -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 *));


+ 2
- 1
src/include/md5.h View File

@ -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 *));


Loading…
Cancel
Save