diff options
Diffstat (limited to 'Source/charon/transforms/prfs/prf_hmac.c')
-rw-r--r-- | Source/charon/transforms/prfs/prf_hmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/transforms/prfs/prf_hmac.c b/Source/charon/transforms/prfs/prf_hmac.c index 3ebe45d98..b16554eb1 100644 --- a/Source/charon/transforms/prfs/prf_hmac.c +++ b/Source/charon/transforms/prfs/prf_hmac.c @@ -101,7 +101,7 @@ prf_hmac_t *prf_hmac_create(hash_algorithm_t hash_algorithm) this->public.prf_interface.set_key = (status_t (*) (prf_t *,chunk_t))set_key; this->public.prf_interface.destroy = (status_t (*) (prf_t *))destroy; - this->hmac = hmac_create(HASH_SHA1); + this->hmac = hmac_create(hash_algorithm); if (this->hmac == NULL) { allocator_free(this); |