diff options
author | lloyd <[email protected]> | 2010-06-15 23:59:08 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-15 23:59:08 +0000 |
commit | bb14aeadb3bc9137ae386460cd4d885b23d9a111 (patch) | |
tree | 80000869393480ae3818b3da1bc6361d416da18c /src/hash/tiger | |
parent | 73446ab47ffe15d72f5bbd7f859788c641ac045a (diff) |
More Doxygen
Diffstat (limited to 'src/hash/tiger')
-rw-r--r-- | src/hash/tiger/tiger.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/hash/tiger/tiger.h b/src/hash/tiger/tiger.h index c38df02e7..441b83664 100644 --- a/src/hash/tiger/tiger.h +++ b/src/hash/tiger/tiger.h @@ -21,7 +21,12 @@ class BOTAN_DLL Tiger : public MDx_HashFunction void clear(); std::string name() const; HashFunction* clone() const { return new Tiger(OUTPUT_LENGTH); } - Tiger(u32bit = 24, u32bit = 3); + + /** + * @param out_size specifies the output length; can be 16, 20, or 24 + * @param passes to make in the algorithm + */ + Tiger(u32bit out_size = 24, u32bit passes = 3); private: void compress_n(const byte[], u32bit block); void copy_out(byte[]); |