summaryrefslogtreecommitdiff
path: root/whrlpool.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-08-18 22:26:01 -0400
committerJeffrey Walton <noloader@gmail.com>2018-08-18 22:26:01 -0400
commit3929c3594c1a084beb045afe22ec19d170a01c47 (patch)
tree7b773379a6d9f3c224c453d7e27542bb9b2df810 /whrlpool.h
parent1f5d0d85cf40e840ebac88de70db5e508564648d (diff)
downloadcryptopp-git-3929c3594c1a084beb045afe22ec19d170a01c47.tar.gz
Add SHACAL2 cipher AlgorithmProvider()
Diffstat (limited to 'whrlpool.h')
-rw-r--r--whrlpool.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/whrlpool.h b/whrlpool.h
index 47bb6c33..e6213f7e 100644
--- a/whrlpool.h
+++ b/whrlpool.h
@@ -29,11 +29,12 @@ NAMESPACE_BEGIN(CryptoPP)
class Whirlpool : public IteratedHashWithStaticTransform<word64, BigEndian, 64, 64, Whirlpool>
{
public:
+ CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Whirlpool";}
+ std::string AlgorithmProvider() const;
+
static void InitState(HashWordType *state);
static void Transform(word64 *digest, const word64 *data);
void TruncatedFinal(byte *hash, size_t size);
- CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Whirlpool";}
- std::string AlgorithmProvider() const;
};
NAMESPACE_END