/*
* This is an OpenSSL-compatible implementation of the RSA Data Security,
* Inc. MD4 Message-Digest Algorithm.
*
* Written by Solar Designer <solar@openwall.com> in 2001, and placed in
* the public domain. See md4.c for more information.
*/
#ifndef MD4_H
#define MD4_H
#include "hash-method.h"
struct md4_context {
uint_fast32_t a, b, c, d;
};
extern const struct hash_method hash_method_md4;
#endif