diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-12-06 15:37:56 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-12-06 15:37:56 +0000 |
commit | 6f36717843c71a46c5cfb8d4d4f9b74d0585de1f (patch) | |
tree | ffa1345c68767e8660a6bf917eeef9d5ce15b947 /Source/charon/transforms/prfs/hmac_prf.h | |
parent | 62abe4a37dade51bc122e97d566ec7b728648638 (diff) | |
download | strongswan-6f36717843c71a46c5cfb8d4d4f9b74d0585de1f.tar.bz2 strongswan-6f36717843c71a46c5cfb8d4d4f9b74d0585de1f.tar.xz |
- code cleaned up
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 |