- changed prf_hmac_t to hmac_prf_t

This commit is contained in:
Jan Hutter
2005-11-28 12:56:40 +00:00
parent 42e69fbdad
commit 61068e9152
5 changed files with 28 additions and 28 deletions
+3 -3
View File
@@ -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: