2 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
7 * Cleaned up version of the md5.h header file from RFC 1321.
11 * MD5.H - header file for MD5C.C
15 * Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
18 * License to copy and use this software is granted provided that it
19 * is identified as the "RSA Data Security, Inc. MD5 Message-Digest
20 * Algorithm" in all material mentioning or referencing this software
23 * License is also granted to make and use derivative works provided
24 * that such works are identified as "derived from the RSA Data
25 * Security, Inc. MD5 Message-Digest Algorithm" in all material
26 * mentioning or referencing the derived work.
28 * RSA Data Security, Inc. makes no representations concerning either
29 * the merchantability of this software or the suitability of this
30 * software for any particular purpose. It is provided "as is"
31 * without express or implied warranty of any kind.
33 * These notices must be retained in any copies of any part of this
34 * documentation and/or software.
40 #include <sys/types.h> /* for uint_* */
43 * Definitions for MD5 hashing functions, conformant to RFC 1321
50 #define MD5_DIGEST_LENGTH 16
54 uint32_t state
[4]; /* state (ABCD) */
55 uint32_t count
[2]; /* number of bits, modulo 2^64 (lsb first) */
57 uint8_t buf8
[64]; /* undigested input */
58 uint32_t buf32
[16]; /* realigned input */
62 void MD5Init(MD5_CTX
*);
63 void MD5Update(MD5_CTX
*, const void *, unsigned int);
64 void MD5Final(void *, MD5_CTX
*);
70 #endif /* _SYS_MD5_H */