ext-cryptopp/tiger.h

30 lines
606 B
C
Raw Normal View History

2002-10-04 17:31:41 +00:00
#ifndef CRYPTOPP_TIGER_H
#define CRYPTOPP_TIGER_H
#include "config.h"
#ifdef WORD64_AVAILABLE
#include "iterhash.h"
NAMESPACE_BEGIN(CryptoPP)
2007-04-15 23:00:27 +00:00
/// <a href="http://www.cryptolounge.org/wiki/Tiger">Tiger</a>
class Tiger : public IteratedHashWithStaticTransform<word64, LittleEndian, 64, 24, Tiger>
2002-10-04 17:31:41 +00:00
{
public:
static void InitState(HashWordType *state);
2002-10-04 17:31:41 +00:00
static void Transform(word64 *digest, const word64 *data);
2005-07-12 04:23:32 +00:00
void TruncatedFinal(byte *hash, size_t size);
2002-10-04 17:31:41 +00:00
static const char * StaticAlgorithmName() {return "Tiger";}
protected:
2007-04-15 23:00:27 +00:00
static const word64 table[4*256+3];
2002-10-04 17:31:41 +00:00
};
NAMESPACE_END
#endif
#endif