- doxygen constructor declaration, make default ?
This commit is contained in:
@@ -51,6 +51,11 @@ typedef struct hasher_t hasher_t;
|
||||
/**
|
||||
* @brief Generic interface for all hash functions.
|
||||
*
|
||||
* @b Constructors:
|
||||
* - hasher_create()
|
||||
*
|
||||
* @see md5_hasher_t, sha1_hasher_t
|
||||
*
|
||||
* @ingroup hashers
|
||||
*/
|
||||
struct hasher_t {
|
||||
|
||||
@@ -32,6 +32,12 @@ typedef struct md5_hasher_t md5_hasher_t;
|
||||
* @brief Implementation of hasher_t interface using the
|
||||
* MD5 algorithm.
|
||||
*
|
||||
* @b Constructors:
|
||||
* - hasher_create() using HASH_MD5
|
||||
* - md5_hasher_create()
|
||||
*
|
||||
* @see hasher_t
|
||||
*
|
||||
* @ingroup hashers
|
||||
*/
|
||||
struct md5_hasher_t {
|
||||
|
||||
@@ -32,6 +32,12 @@ typedef struct sha1_hasher_t sha1_hasher_t;
|
||||
* @brief Implementation of hasher_t interface using the
|
||||
* SHA1 algorithm.
|
||||
*
|
||||
* @b Constructors:
|
||||
* - hasher_create() using HASH_SHA1
|
||||
* - sha1_hasher_create()
|
||||
*
|
||||
* @see hasher_t
|
||||
*
|
||||
* @ingroup hashers
|
||||
*/
|
||||
struct sha1_hasher_t {
|
||||
|
||||
Reference in New Issue
Block a user