diff options
Diffstat (limited to 'Source/charon/transforms/prfs/hmac_prf.h')
-rw-r--r-- | Source/charon/transforms/prfs/hmac_prf.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Source/charon/transforms/prfs/hmac_prf.h b/Source/charon/transforms/prfs/hmac_prf.h index 70605ff0e..6ccfceef2 100644 --- a/Source/charon/transforms/prfs/hmac_prf.h +++ b/Source/charon/transforms/prfs/hmac_prf.h @@ -1,7 +1,7 @@ /** * @file hmac_prf.h * - * @brief Interface for hmac_prf_t. + * @brief Interface of hmac_prf_t. * */ @@ -31,10 +31,13 @@ typedef struct hmac_prf_t hmac_prf_t; /** * @brief Implementation of prf_t interface using the - * a HMAC algorithm. + * HMAC algorithm. * * This simply wraps a hmac_t in a prf_t. More a question of - * interface matchig. + * interface matching. + * + * @b Constructors: + * - hmac_prf_create() * * @ingroup prfs */ @@ -47,11 +50,11 @@ struct hmac_prf_t { }; /** - * @brief Creates a new hmac_prf_t object + * @brief Creates a new hmac_prf_t object. * * @param hash_algorithm hmac's hash algorithm * @return - * - hmac_prf_t if successfully + * - hmac_prf_t object * - NULL if hash not supported * * @ingroup prfs |