mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 03:40:22 +00:00
26 lines
678 B
C++
26 lines
678 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 compatibility with a broken product. */
|
|
class MD4 : public IteratedHashWithStaticTransform<word32, LittleEndian, 64, MD4>
|
|
{
|
|
public:
|
|
enum {DIGESTSIZE = 16};
|
|
MD4() : IteratedHashWithStaticTransform<word32, LittleEndian, 64, MD4>(DIGESTSIZE) {Init();}
|
|
static void Transform(word32 *digest, const word32 *data);
|
|
static const char *StaticAlgorithmName() {return "MD4";}
|
|
|
|
protected:
|
|
void Init();
|
|
};
|
|
|
|
NAMESPACE_END
|
|
|
|
#endif
|