aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/crypto_tests
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2009-10-28 19:17:35 +0000
committerGreg Hudson <ghudson@mit.edu>2009-10-28 19:17:35 +0000
commit83c40776396c2c79a1f3a582cb1be6872b871be5 (patch)
tree159a0e38a51d8c8610a7bdfcdceaaadd46d4d2fc /src/lib/crypto/crypto_tests
parent7da28b8d6f545c8c8c9880d854325d479bba1861 (diff)
downloadkrb5-83c40776396c2c79a1f3a582cb1be6872b871be5.zip
krb5-83c40776396c2c79a1f3a582cb1be6872b871be5.tar.gz
krb5-83c40776396c2c79a1f3a582cb1be6872b871be5.tar.bz2
Bump the accessor version number since we made changes.
Take the opportunity to regularize accessor field names (no krb5 or krb5int prefixes). Fix a test program which was still using krb5_hmac. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23081 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/crypto_tests')
-rw-r--r--src/lib/crypto/crypto_tests/t_hmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/crypto/crypto_tests/t_hmac.c b/src/lib/crypto/crypto_tests/t_hmac.c
index 30830d6..d09adb0 100644
--- a/src/lib/crypto/crypto_tests/t_hmac.c
+++ b/src/lib/crypto/crypto_tests/t_hmac.c
@@ -122,7 +122,7 @@ static krb5_error_code hmac1(const struct krb5_hash_provider *h,
}
printd(" hmac input", in);
krb5_k_create_key(NULL, key, &k);
- err = krb5_hmac(h, k, 1, in, out);
+ err = krb5int_hmac(h, k, 1, in, out);
krb5_k_free_key(NULL, k);
if (err == 0)
printd(" hmac output", out);