diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-28 12:56:40 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-28 12:56:40 +0000 |
commit | 61068e9152c93365887d7b137c49e34ecb05cc29 (patch) | |
tree | 491bea2f44be452f91f8b82c43c15b34f336c168 /Source/charon/transforms/prfs/prf.c | |
parent | 42e69fbdadda32684495c7917ec5332e0aea859a (diff) | |
download | strongswan-61068e9152c93365887d7b137c49e34ecb05cc29.tar.bz2 strongswan-61068e9152c93365887d7b137c49e34ecb05cc29.tar.xz |
- changed prf_hmac_t to hmac_prf_t
Diffstat (limited to 'Source/charon/transforms/prfs/prf.c')
-rw-r--r-- | Source/charon/transforms/prfs/prf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/transforms/prfs/prf.c b/Source/charon/transforms/prfs/prf.c index e1cc13990..732c91c51 100644 --- a/Source/charon/transforms/prfs/prf.c +++ b/Source/charon/transforms/prfs/prf.c @@ -24,7 +24,7 @@ #include "prf.h" #include <transforms/hashers/hasher.h> -#include <transforms/prfs/prf_hmac.h> +#include <transforms/prfs/hmac_prf.h> /** @@ -49,11 +49,11 @@ prf_t *prf_create(pseudo_random_function_t pseudo_random_function) { case PRF_HMAC_SHA1: { - return (prf_t*)prf_hmac_create(HASH_SHA1); + return (prf_t*)hmac_prf_create(HASH_SHA1); } case PRF_HMAC_MD5: { - return (prf_t*)prf_hmac_create(HASH_MD5); + return (prf_t*)hmac_prf_create(HASH_MD5); } case PRF_HMAC_TIGER: case PRF_AES128_CBC: |