* @file prf_hmac_sha1.h
*
* @brief Implementation of prf_t interface using the
- * HMAC SHA1 algorithm.
+ * HMAC SHA1 algorithm. This simply wraps hmac-sha1
+ * in a prf.
*
*/
#include "../../types.h"
/**
- * Object representing a diffie hellman exchange
+ * Object representing a prf using HMAC-SHA1
*
*/
typedef struct prf_hmac_sha1_s prf_hmac_sha1_t;
/**
* Creates a new prf_hmac_sha1_t object
*
- * @param key Key to use for this prf
* @return
* - prf_hmac_sha1_t if successfully
* - NULL if out of ressources
*/
-prf_hmac_sha1_t *prf_hmac_sha1_create(chunk_t key);
+prf_hmac_sha1_t *prf_hmac_sha1_create();
#endif /*PRF_HMAC_SHA1_H_*/