diff options
| author | thorpej <thorpej@NetBSD.org> | 1997-01-30 01:05:01 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 1997-01-30 01:05:01 +0000 |
| commit | 8d29c3cb33ef3e712302f5f62142d8a987134b12 (patch) | |
| tree | 442dc6e842c722a136996be3684dfef44eb9d6a9 /include | |
| parent | 361fd90923d7411c3593eaf0c5a8318da8a3a427 (diff) | |
Include files for MD4/MD5 routines, from FreeBSD.
Diffstat (limited to 'include')
| -rw-r--r-- | include/md4.h | 46 | ||||
| -rw-r--r-- | include/md5.h | 46 |
2 files changed, 92 insertions, 0 deletions
diff --git a/include/md4.h b/include/md4.h new file mode 100644 index 00000000000..6b544f0cf40 --- /dev/null +++ b/include/md4.h @@ -0,0 +1,46 @@ +/* $NetBSD: md4.h,v 1.1 1997/01/30 01:05:01 thorpej Exp $ */ + +/* MD4.H - header file for MD4C.C + */ + +/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All + rights reserved. + + License to copy and use this software is granted provided that it + is identified as the "RSA Data Security, Inc. MD4 Message-Digest + Algorithm" in all material mentioning or referencing this software + or this function. + License is also granted to make and use derivative works provided + that such works are identified as "derived from the RSA Data + Security, Inc. MD4 Message-Digest Algorithm" in all material + mentioning or referencing the derived work. + + RSA Data Security, Inc. makes no representations concerning either + the merchantability of this software or the suitability of this + software for any particular purpose. It is provided "as is" + without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. + */ + +#ifndef _MD4_H_ +#define _MD4_H_ + +#include <sys/types.h> + +/* MD4 context. */ +typedef struct MD4Context { + u_int32_t state[4]; /* state (ABCD) */ + u_int32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ + unsigned char buffer[64]; /* input buffer */ +} MD4_CTX; + +void MD4Init(MD4_CTX *); +void MD4Update(MD4_CTX *, const unsigned char *, unsigned int); +void MD4Final(unsigned char [16], MD4_CTX *); +char * MD4End(MD4_CTX *, char *); +char * MD4File(char *, char *); +char * MD4Data(const unsigned char *, unsigned int, char *); + +#endif /* _MD4_H_ */ diff --git a/include/md5.h b/include/md5.h new file mode 100644 index 00000000000..2e2d6d65132 --- /dev/null +++ b/include/md5.h @@ -0,0 +1,46 @@ +/* $NetBSD: md5.h,v 1.1 1997/01/30 01:05:03 thorpej Exp $ */ + +/* MD5.H - header file for MD5C.C + */ + +/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All +rights reserved. + +License to copy and use this software is granted provided that it +is identified as the "RSA Data Security, Inc. MD5 Message-Digest +Algorithm" in all material mentioning or referencing this software +or this function. + +License is also granted to make and use derivative works provided +that such works are identified as "derived from the RSA Data +Security, Inc. MD5 Message-Digest Algorithm" in all material +mentioning or referencing the derived work. + +RSA Data Security, Inc. makes no representations concerning either +the merchantability of this software or the suitability of this +software for any particular purpose. It is provided "as is" +without express or implied warranty of any kind. + +These notices must be retained in any copies of any part of this +documentation and/or software. + */ + +#ifndef _MD5_H_ +#define _MD5_H_ + +#include <sys/types.h> + +/* MD5 context. */ +typedef struct MD5Context { + u_int32_t state[4]; /* state (ABCD) */ + u_int32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ + unsigned char buffer[64]; /* input buffer */ +} MD5_CTX; + +void MD5Init (MD5_CTX *); +void MD5Update (MD5_CTX *, const unsigned char *, unsigned int); +void MD5Final (unsigned char [16], MD5_CTX *); +char * MD5End(MD5_CTX *, char *); +char * MD5File(char *, char *); +char * MD5Data(const unsigned char *, unsigned int, char *); +#endif /* _MD5_H_ */ |
