diff options
author | Zhanna Tsitkov <tsitkova@mit.edu> | 2009-10-28 18:12:38 +0000 |
---|---|---|
committer | Zhanna Tsitkov <tsitkova@mit.edu> | 2009-10-28 18:12:38 +0000 |
commit | c60792b08a48ec497e541917d7fea953d59f5612 (patch) | |
tree | b27bbd6a72c985474c74b7a4b2b8ed80015d468f /src/lib/gssapi/krb5/util_crypt.c | |
parent | ca0304526a518b2419eee3c0aad569b50d9009ef (diff) | |
download | krb5-c60792b08a48ec497e541917d7fea953d59f5612.tar.gz krb5-c60792b08a48ec497e541917d7fea953d59f5612.tar.xz krb5-c60792b08a48ec497e541917d7fea953d59f5612.zip |
Replace krb5_ with krb5Int_ prefix for non-API functions
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23079 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/gssapi/krb5/util_crypt.c')
-rw-r--r-- | src/lib/gssapi/krb5/util_crypt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/gssapi/krb5/util_crypt.c b/src/lib/gssapi/krb5/util_crypt.c index 8afd603d21..0f712ea466 100644 --- a/src/lib/gssapi/krb5/util_crypt.c +++ b/src/lib/gssapi/krb5/util_crypt.c @@ -321,7 +321,7 @@ kg_arcfour_docrypt(const krb5_keyblock *longterm_key , int ms_usage, input.length = i; output.data = (void *) usage_key.contents; output.length = usage_key.length; - code = (*kaccess.krb5_hmac) (kaccess.md5_hash_provider, + code = (*kaccess.krb5int_hmac) (kaccess.md5_hash_provider, longterm_key, 1, &input, &output); if (code) goto cleanup_arcfour; @@ -331,7 +331,7 @@ kg_arcfour_docrypt(const krb5_keyblock *longterm_key , int ms_usage, input.data = ( void *) kd_data; input.length = kd_data_len; output.data = (void *) seq_enc_key.contents; - code = (*kaccess.krb5_hmac) (kaccess.md5_hash_provider, + code = (*kaccess.krb5int_hmac) (kaccess.md5_hash_provider, &usage_key, 1, &input, &output); if (code) goto cleanup_arcfour; @@ -667,7 +667,7 @@ kg_arcfour_docrypt_iov(krb5_context context, input.length = i; output.data = (void *) usage_key.contents; output.length = usage_key.length; - code = (*kaccess.krb5_hmac) (kaccess.md5_hash_provider, + code = (*kaccess.krb5int_hmac) (kaccess.md5_hash_provider, longterm_key, 1, &input, &output); if (code) goto cleanup_arcfour; @@ -677,7 +677,7 @@ kg_arcfour_docrypt_iov(krb5_context context, input.data = ( void *) kd_data; input.length = kd_data_len; output.data = (void *) seq_enc_key.contents; - code = (*kaccess.krb5_hmac) (kaccess.md5_hash_provider, + code = (*kaccess.krb5int_hmac) (kaccess.md5_hash_provider, &usage_key, 1, &input, &output); if (code) goto cleanup_arcfour; |