aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/transforms/prfs/prf.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/charon/transforms/prfs/prf.c')
-rw-r--r--Source/charon/transforms/prfs/prf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/charon/transforms/prfs/prf.c b/Source/charon/transforms/prfs/prf.c
index d5f480f35..200286437 100644
--- a/Source/charon/transforms/prfs/prf.c
+++ b/Source/charon/transforms/prfs/prf.c
@@ -29,13 +29,13 @@
/*
* Described in header
*/
-prf_t *prf_create(pseudo_random_function_t pseudo_random_function, chunk_t key)
+prf_t *prf_create(pseudo_random_function_t pseudo_random_function)
{
switch (pseudo_random_function)
{
case PRF_HMAC_SHA1:
{
- return (prf_t*)prf_hmac_sha1_create(key);
+ return (prf_t*)prf_hmac_sha1_create();
}
case PRF_HMAC_MD5:
case PRF_HMAC_TIGER: