aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/transforms/signers/hmac_signer.c
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-11-28 12:56:40 +0000
committerJan Hutter <jhutter@hsr.ch>2005-11-28 12:56:40 +0000
commit61068e9152c93365887d7b137c49e34ecb05cc29 (patch)
tree491bea2f44be452f91f8b82c43c15b34f336c168 /Source/charon/transforms/signers/hmac_signer.c
parent42e69fbdadda32684495c7917ec5332e0aea859a (diff)
downloadstrongswan-61068e9152c93365887d7b137c49e34ecb05cc29.tar.bz2
strongswan-61068e9152c93365887d7b137c49e34ecb05cc29.tar.xz
- changed prf_hmac_t to hmac_prf_t
Diffstat (limited to 'Source/charon/transforms/signers/hmac_signer.c')
-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)
{