diff options
author | Martin Willi <martin@strongswan.org> | 2006-04-28 07:05:12 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-04-28 07:05:12 +0000 |
commit | 52923c9acb349adec3d1cc039e7a74c2e822da6e (patch) | |
tree | 5d723572fb2ede8b4cb96734468eb7c4f9b658d4 /Source/lib/crypto/hashers/hasher.h | |
parent | eea353466ec86ad5fd3fc4fb7ac560ebced64f3d (diff) | |
download | strongswan-52923c9acb349adec3d1cc039e7a74c2e822da6e.tar.bz2 strongswan-52923c9acb349adec3d1cc039e7a74c2e822da6e.tar.xz |
- renamed get_block_size of hasher
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 |