diff options
author | lloyd <[email protected]> | 2012-10-30 03:32:54 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-10-30 03:32:54 +0000 |
commit | 9151952c4174607678139f9ccb582aa3b886b519 (patch) | |
tree | 1c702abe9a8258c6dda3cc14d707c2a3d9579af0 /src/hash | |
parent | 3b62f6729a930b81c3110962f31fb871a5691612 (diff) |
Doxygen
Diffstat (limited to 'src/hash')
-rw-r--r-- | src/hash/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash/hash.h b/src/hash/hash.h index 8143e8e90..1e4b045e2 100644 --- a/src/hash/hash.h +++ b/src/hash/hash.h @@ -22,12 +22,12 @@ class BOTAN_DLL HashFunction : public Buffered_Computation, { public: /** - * Get a new object representing the same algorithm as *this + * @return new object representing the same algorithm as *this */ virtual HashFunction* clone() const = 0; /** - * The hash block size as defined for this algorithm + * @return hash block size as defined for this algorithm */ virtual size_t hash_block_size() const { return 0; } }; |