Max Vozeler | 7d6f75e | 2010-01-17 21:55:31 +1100 | [diff] [blame] | 1 | #ifndef _CRYPTO_MD5_H |
| 2 | #define _CRYPTO_MD5_H |
| 3 | |
| 4 | #include <linux/types.h> |
| 5 | |
| 6 | #define MD5_DIGEST_SIZE 16 |
| 7 | #define MD5_HMAC_BLOCK_SIZE 64 |
| 8 | #define MD5_BLOCK_WORDS 16 |
| 9 | #define MD5_HASH_WORDS 4 |
| 10 | |
LABBE Corentin | f79f1f7 | 2015-05-17 12:54:12 +0200 | [diff] [blame] | 11 | #define MD5_H0 0x67452301UL |
| 12 | #define MD5_H1 0xefcdab89UL |
| 13 | #define MD5_H2 0x98badcfeUL |
| 14 | #define MD5_H3 0x10325476UL |
| 15 | |
LABBE Corentin | 0c4c78d | 2015-12-17 13:45:39 +0100 | [diff] [blame] | 16 | extern const u8 md5_zero_message_hash[MD5_DIGEST_SIZE]; |
| 17 | |
Max Vozeler | 7d6f75e | 2010-01-17 21:55:31 +1100 | [diff] [blame] | 18 | struct md5_state { |
| 19 | u32 hash[MD5_HASH_WORDS]; |
| 20 | u32 block[MD5_BLOCK_WORDS]; |
| 21 | u64 byte_count; |
| 22 | }; |
| 23 | |
| 24 | #endif |