From dbcc911afad1ea332b5bca2873fd3cb46bfc8dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sat, 26 Apr 2003 11:42:01 +0000 Subject: [PATCH] use _krb5_PKCS5_PBKDF2 git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12154 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/aes-test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/krb5/aes-test.c b/lib/krb5/aes-test.c index 1174abf0f..82c25e4fc 100644 --- a/lib/krb5/aes-test.c +++ b/lib/krb5/aes-test.c @@ -252,10 +252,10 @@ string_to_key_test(krb5_context context) } #endif - ret = krb5_PKCS5_PBKDF2(context, CKSUMTYPE_SHA1, password, salt, - keys[i].iterations - 1, - keys[i].enctype, - &key); + ret = _krb5_PKCS5_PBKDF2(context, CKSUMTYPE_SHA1, password, salt, + keys[i].iterations - 1, + keys[i].enctype, + &key); if (ret) { krb5_warn(context, ret, "%d: krb5_PKCS5_PBKDF2", i); val = 1;