/include/crypto/md5.h
https://bitbucket.org/thekraven/iscream_thunderc-2.6.35 · C++ Header · 17 lines · 13 code · 4 blank · 0 comment · 0 complexity · 71e3dc18e426ddf7cc6889be689a7a04 MD5 · raw file
- #ifndef _CRYPTO_MD5_H
- #define _CRYPTO_MD5_H
- #include <linux/types.h>
- #define MD5_DIGEST_SIZE 16
- #define MD5_HMAC_BLOCK_SIZE 64
- #define MD5_BLOCK_WORDS 16
- #define MD5_HASH_WORDS 4
- struct md5_state {
- u32 hash[MD5_HASH_WORDS];
- u32 block[MD5_BLOCK_WORDS];
- u64 byte_count;
- };
- #endif