diff options
Diffstat (limited to 'Source/charon/transforms/hashers/hasher_sha1.h')
-rw-r--r-- | Source/charon/transforms/hashers/hasher_sha1.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Source/charon/transforms/hashers/hasher_sha1.h b/Source/charon/transforms/hashers/hasher_sha1.h index 1f96d5d72..446dc6561 100644 --- a/Source/charon/transforms/hashers/hasher_sha1.h +++ b/Source/charon/transforms/hashers/hasher_sha1.h @@ -1,8 +1,7 @@ /** * @file hasher_sha1.h * - * @brief Implementation of hasher_t interface using the - * SHA1 algorithm. + * @brief Interface for the hasher_sha1_t * */ @@ -30,8 +29,10 @@ typedef struct hasher_sha1_t hasher_sha1_t; /** - * Object representing the sha1 hasher + * @brief Implementation of hasher_t interface using the + * SHA1 algorithm. * + * @ingroup hashers */ struct hasher_sha1_t { @@ -42,11 +43,13 @@ struct hasher_sha1_t { }; /** - * Creates a new hasher_sha1_t object + * @brief Creates a new hasher_sha1_t. * * @return - * - hasher_sha1_t if successfully - * - NULL if out of ressources + * - hasher_sha1_t if successfully + * - NULL if out of ressources + * + * @ingroup hashers */ hasher_sha1_t *hasher_sha1_create(); |