diff options
author | lloyd <[email protected]> | 2015-01-28 06:20:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-01-28 06:20:39 +0000 |
commit | 710229be83cdbc061949c61942896b5af9e134d8 (patch) | |
tree | 5a28c6d2cd456a5a686a332b7466ed9f326cc5f8 /src/lib/hash/comb4p/comb4p.h | |
parent | 7b56f1bd570dc684ffd7c945dee0d9b5480354ff (diff) |
Use Algo_Registry also for hashes.
Diffstat (limited to 'src/lib/hash/comb4p/comb4p.h')
-rw-r--r-- | src/lib/hash/comb4p/comb4p.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/hash/comb4p/comb4p.h b/src/lib/hash/comb4p/comb4p.h index ba745aefa..d2e9587c2 100644 --- a/src/lib/hash/comb4p/comb4p.h +++ b/src/lib/hash/comb4p/comb4p.h @@ -32,6 +32,8 @@ class BOTAN_DLL Comb4P : public HashFunction return m_hash1->output_length() + m_hash2->output_length(); } + static Comb4P* make(const Spec& spec); + HashFunction* clone() const { return new Comb4P(m_hash1->clone(), m_hash2->clone()); |