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