summaryrefslogtreecommitdiff
path: root/tiger.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-11-30 19:16:18 -0500
committerJeffrey Walton <noloader@gmail.com>2019-11-30 19:16:18 -0500
commite0a759719948dfe8236fcee93e158b92ce60f586 (patch)
tree9b9c870c0205c1157abcfc05fec94eb69d782df8 /tiger.h
parentf045993723d48c5f163e8c0eb4007c456bf7f572 (diff)
downloadcryptopp-git-e0a759719948dfe8236fcee93e158b92ce60f586.tar.gz
Update Doxygen comments
Diffstat (limited to 'tiger.h')
-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>
{