summaryrefslogtreecommitdiff
path: root/tiger.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-04-15 23:00:27 +0000
committerweidai <weidai11@users.noreply.github.com>2007-04-15 23:00:27 +0000
commit643b3022278591c8a784f5a34f689548a4ad62b1 (patch)
tree6d117430c0ea76a7444fa3871d1898995d825ada /tiger.h
parent3b89824be3a8d3974ad0316f2067451c3072bffc (diff)
downloadcryptopp-git-643b3022278591c8a784f5a34f689548a4ad62b1.tar.gz
MMX/SSE2 optimizations
Diffstat (limited to 'tiger.h')
-rw-r--r--tiger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tiger.h b/tiger.h
index 66d1da2a..42bf1614 100644
--- a/tiger.h
+++ b/tiger.h
@@ -9,7 +9,7 @@
NAMESPACE_BEGIN(CryptoPP)
-/// <a href="http://www.weidai.com/scan-mirror/md.html#Tiger">Tiger</a>
+/// <a href="http://www.cryptolounge.org/wiki/Tiger">Tiger</a>
class Tiger : public IteratedHashWithStaticTransform<word64, LittleEndian, 64, 24, Tiger>
{
public:
@@ -19,7 +19,7 @@ public:
static const char * StaticAlgorithmName() {return "Tiger";}
protected:
- static const word64 table[4*256];
+ static const word64 table[4*256+3];
};
NAMESPACE_END