From 99a9676d456c043c4b8dd856ef28d5e413b402d7 Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Wed, 23 Nov 2005 07:17:12 +0000 Subject: - bug in creating fixed --- Source/charon/transforms/prfs/prf_hmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/charon/transforms/prfs/prf_hmac.c') 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); -- cgit v1.2.3