summaryrefslogtreecommitdiff
path: root/tiger.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-22 19:50:11 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-22 19:50:11 -0500
commite3d79bf98c3d068c4be602c544a0b2dec207d5a1 (patch)
tree76684c8413e4f5120a063b28f772316d3afcfa9c /tiger.h
parent27cbfe03d6d3d4c533eb94557081307853030d14 (diff)
downloadcryptopp-git-e3d79bf98c3d068c4be602c544a0b2dec207d5a1.tar.gz
Update documentation
Diffstat (limited to 'tiger.h')
-rw-r--r--tiger.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/tiger.h b/tiger.h
index aaca69a0..107a5d1c 100644
--- a/tiger.h
+++ b/tiger.h
@@ -1,3 +1,9 @@
+// tiger.h - originally written and placed in the public domain by Wei Dai
+
+/// \file tiger.h
+/// \brief Classes for the Tiger message digest
+/// \since Crypto++ 2.1
+
#ifndef CRYPTOPP_TIGER_H
#define CRYPTOPP_TIGER_H
@@ -12,7 +18,9 @@
NAMESPACE_BEGIN(CryptoPP)
-/// <a href="http://www.cryptolounge.org/wiki/Tiger">Tiger</a>
+/// \brief Tiger message digest
+/// \sa <a href="http://www.cryptolounge.org/wiki/Tiger">Tiger</a>
+/// \since Crypto++ 2.1
class Tiger : public IteratedHashWithStaticTransform<word64, LittleEndian, 64, 24, Tiger>
{
public: