1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Common values for ARC4 Cipher Algorithm
9 #include <linux/types.h>
11 #define MD4_DIGEST_SIZE 16
12 #define MD4_HMAC_BLOCK_SIZE 64
13 #define MD4_BLOCK_WORDS 16
14 #define MD4_HASH_WORDS 4
17 u32 hash
[MD4_HASH_WORDS
];
18 u32 block
[MD4_BLOCK_WORDS
];
23 int cifs_md4_init(struct md4_ctx
*mctx
);
24 int cifs_md4_update(struct md4_ctx
*mctx
, const u8
*data
, unsigned int len
);
25 int cifs_md4_final(struct md4_ctx
*mctx
, u8
*out
);
27 #endif /* _CIFS_MD4_H */