aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/transforms/signers
diff options
context:
space:
mode:
Diffstat (limited to 'Source/charon/transforms/signers')
-rw-r--r--Source/charon/transforms/signers/hmac_signer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/charon/transforms/signers/hmac_signer.c b/Source/charon/transforms/signers/hmac_signer.c
index caf2b9e68..c548bfb15 100644
--- a/Source/charon/transforms/signers/hmac_signer.c
+++ b/Source/charon/transforms/signers/hmac_signer.c
@@ -23,7 +23,7 @@
#include "hmac_signer.h"
#include <utils/allocator.h>
-#include <transforms/prfs/prf_hmac.h>
+#include <transforms/prfs/hmac_prf.h>
/**
* This class represents a hmac signer with 12 byte (96 bit) output
@@ -155,7 +155,7 @@ hmac_signer_t *hmac_signer_create(hash_algorithm_t hash_algoritm)
return NULL;
}
- this->hmac_prf = (prf_t *) prf_hmac_create(hash_algoritm);
+ this->hmac_prf = (prf_t *) hmac_prf_create(hash_algoritm);
if (this->hmac_prf == NULL)
{