summaryrefslogtreecommitdiffstats
path: root/CryptoPP/whrlpool.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-23 21:53:08 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-23 21:53:08 +0100
commit561f10539494ce6cba62d58dab2a6686e04c760b (patch)
treef9d4cb50653ffa7473bdf148b900145aff8e4074 /CryptoPP/whrlpool.h
parentMemDumpAnalysis now outputs executable to MCServer folder and debugging starts there. (diff)
downloadcuberite-561f10539494ce6cba62d58dab2a6686e04c760b.tar
cuberite-561f10539494ce6cba62d58dab2a6686e04c760b.tar.gz
cuberite-561f10539494ce6cba62d58dab2a6686e04c760b.tar.bz2
cuberite-561f10539494ce6cba62d58dab2a6686e04c760b.tar.lz
cuberite-561f10539494ce6cba62d58dab2a6686e04c760b.tar.xz
cuberite-561f10539494ce6cba62d58dab2a6686e04c760b.tar.zst
cuberite-561f10539494ce6cba62d58dab2a6686e04c760b.zip
Diffstat (limited to 'CryptoPP/whrlpool.h')
-rw-r--r--CryptoPP/whrlpool.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/CryptoPP/whrlpool.h b/CryptoPP/whrlpool.h
deleted file mode 100644
index 62c9d8a53..000000000
--- a/CryptoPP/whrlpool.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef CRYPTOPP_WHIRLPOOL_H
-#define CRYPTOPP_WHIRLPOOL_H
-
-#include "config.h"
-#include "iterhash.h"
-
-NAMESPACE_BEGIN(CryptoPP)
-
-//! <a href="http://www.cryptolounge.org/wiki/Whirlpool">Whirlpool</a>
-class Whirlpool : public IteratedHashWithStaticTransform<word64, BigEndian, 64, 64, Whirlpool>
-{
-public:
- static void InitState(HashWordType *state);
- static void Transform(word64 *digest, const word64 *data);
- void TruncatedFinal(byte *hash, size_t size);
- static const char * StaticAlgorithmName() {return "Whirlpool";}
-};
-
-NAMESPACE_END
-
-#endif