diff options
Diffstat (limited to 'src/hash/hash.h')
-rw-r--r-- | src/hash/hash.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/hash/hash.h b/src/hash/hash.h index 881e23817..af411fb87 100644 --- a/src/hash/hash.h +++ b/src/hash/hash.h @@ -14,20 +14,12 @@ namespace Botan { /** -* This class represents hash function (message digest) objects. +* This class represents hash function (message digest) objects */ class BOTAN_DLL HashFunction : public BufferedComputation { public: /** - * @param hash_len the output length - * @param block_len the internal block size (if applicable) - */ - HashFunction(size_t hash_len) : BufferedComputation(hash_len) {} - - virtual ~HashFunction() {} - - /** * Get a new object representing the same algorithm as *this */ virtual HashFunction* clone() const = 0; |