mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
22 lines
567 B
C++
22 lines
567 B
C++
#ifndef CRYPTOPP_MD4_H
|
|
#define CRYPTOPP_MD4_H
|
|
|
|
#include "iterhash.h"
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
//! <a href="http://www.weidai.com/scan-mirror/md.html#MD4">MD4</a>
|
|
/*! \warning MD4 is considered insecure, and should not be used
|
|
unless you absolutely need it for compatibility. */
|
|
class MD4 : public IteratedHashWithStaticTransform<word32, LittleEndian, 64, 16, MD4>
|
|
{
|
|
public:
|
|
static void InitState(HashWordType *state);
|
|
static void Transform(word32 *digest, const word32 *data);
|
|
static const char *StaticAlgorithmName() {return "MD4";}
|
|
};
|
|
|
|
NAMESPACE_END
|
|
|
|
#endif
|