diff options
Diffstat (limited to 'Source/lib/crypto/hashers/hasher.h')
-rw-r--r-- | Source/lib/crypto/hashers/hasher.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/lib/crypto/hashers/hasher.h b/Source/lib/crypto/hashers/hasher.h index a4d6f14d7..24683c01b 100644 --- a/Source/lib/crypto/hashers/hasher.h +++ b/Source/lib/crypto/hashers/hasher.h @@ -109,12 +109,12 @@ struct hasher_t { void (*allocate_hash) (hasher_t *this, chunk_t data, chunk_t *hash); /** - * @brief Get the block size of this hashing function. + * @brief Get the size of the resulting hash. * * @param this calling object - * @return block size in bytes + * @return hash size in bytes */ - size_t (*get_block_size) (hasher_t *this); + size_t (*get_hash_size) (hasher_t *this); /** * @brief Resets the hashers state, which allows |