aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/hash/tiger/tiger.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/hash/tiger/tiger.h b/src/hash/tiger/tiger.h
index 441b83664..380f6eb24 100644
--- a/src/hash/tiger/tiger.h
+++ b/src/hash/tiger/tiger.h
@@ -20,7 +20,11 @@ class BOTAN_DLL Tiger : public MDx_HashFunction
public:
void clear();
std::string name() const;
- HashFunction* clone() const { return new Tiger(OUTPUT_LENGTH); }
+
+ HashFunction* clone() const
+ {
+ return new Tiger(OUTPUT_LENGTH, PASS);
+ }
/**
* @param out_size specifies the output length; can be 16, 20, or 24