summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tiger.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tiger.h b/tiger.h
index f76ca3e4..2e2454b2 100644
--- a/tiger.h
+++ b/tiger.h
@@ -2,6 +2,9 @@
/// \file tiger.h
/// \brief Classes for the Tiger message digest
+/// \sa <a href="https://www.cryptopp.com/wiki/Tiger">Tiger</a> and
+/// <a href="http://www.cs.technion.ac.il/~biham/Reports/Tiger/">Tiger:
+/// A Fast New Cryptographic Hash Function</a>
/// \since Crypto++ 2.1
#ifndef CRYPTOPP_TIGER_H
@@ -19,7 +22,9 @@
NAMESPACE_BEGIN(CryptoPP)
/// \brief Tiger message digest
-/// \sa <a href="http://www.cryptolounge.org/wiki/Tiger">Tiger</a>
+/// \sa <a href="https://www.cryptopp.com/wiki/Tiger">Tiger</a> and
+/// <a href="http://www.cs.technion.ac.il/~biham/Reports/Tiger/">Tiger:
+/// A Fast New Cryptographic Hash Function</a>
/// \since Crypto++ 2.1
class Tiger : public IteratedHashWithStaticTransform<word64, LittleEndian, 64, 24, Tiger>
{