diff options
author | lloyd <[email protected]> | 2010-10-29 13:51:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-29 13:51:27 +0000 |
commit | 633175a57a03ed9bf5a5e3577bfc26068c62b688 (patch) | |
tree | 086eb3a931d39fb35f8a3896a25a5cb38736a696 /src/hash/hash.h | |
parent | df0dfeb904485bacb8034d0468b4498130939acc (diff) |
Remove BufferedComputation::OUTPUT_LENGTH
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; |