/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _CRYPTO_MD5_H #define _CRYPTO_MD5_H #include <linux/types.h> #define MD5_DIGEST_SIZE … #define MD5_HMAC_BLOCK_SIZE … #define MD5_BLOCK_WORDS … #define MD5_HASH_WORDS … #define MD5_H0 … #define MD5_H1 … #define MD5_H2 … #define MD5_H3 … extern const u8 md5_zero_message_hash[MD5_DIGEST_SIZE]; struct md5_state { … }; #endif