aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/tiger/tiger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/tiger/tiger.h')
-rw-r--r--src/hash/tiger/tiger.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/hash/tiger/tiger.h b/src/hash/tiger/tiger.h
index 918e2de3c..380f6eb24 100644
--- a/src/hash/tiger/tiger.h
+++ b/src/hash/tiger/tiger.h
@@ -12,7 +12,7 @@
namespace Botan {
-/*
+/**
* Tiger
*/
class BOTAN_DLL Tiger : public MDx_HashFunction
@@ -20,8 +20,17 @@ class BOTAN_DLL Tiger : public MDx_HashFunction
public:
void clear();
std::string name() const;
- HashFunction* clone() const { return new Tiger(OUTPUT_LENGTH); }
- Tiger(u32bit = 24, u32bit = 3);
+
+ HashFunction* clone() const
+ {
+ return new Tiger(OUTPUT_LENGTH, PASS);
+ }
+
+ /**
+ * @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[]);