Crypto++
5.6.4
Free C++ class library of cryptographic schemes
tiger.h
1
#ifndef CRYPTOPP_TIGER_H
2
#define CRYPTOPP_TIGER_H
3
4
#include "
config.h
"
5
#include "iterhash.h"
6
7
NAMESPACE_BEGIN(
CryptoPP
)
8
9
/// <a href="http://www.cryptolounge.org/wiki/Tiger">Tiger</a>
10
class
Tiger
: public
IteratedHashWithStaticTransform
<word64,
LittleEndian
, 64, 24,
Tiger
>
11
{
12
public
:
13
static
void
InitState(HashWordType *state);
14
static
void
Transform(word64 *digest,
const
word64 *data);
15
void
TruncatedFinal(
byte
*hash,
size_t
size);
16
CRYPTOPP_CONSTEXPR
static
const
char
*StaticAlgorithmName() {
return
"Tiger"
;}
17
18
protected
:
19
static
const
word64 table[4*256+3];
20
};
21
22
NAMESPACE_END
23
24
#endif
EnumToType
Converts a typename to an enumerated value.
Definition:
cryptlib.h:116
CryptoPP
Crypto++ library namespace.
config.h
Library configuration file.
Tiger
Tiger
Definition:
tiger.h:11
IteratedHashWithStaticTransform
_
Definition:
iterhash.h:82
Generated on Wed Sep 16 2020 15:32:49 for Crypto++ by
1.8.20