summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/string_to_key.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2004-02-19 02:46:30 +0000
committerKen Raeburn <raeburn@mit.edu>2004-02-19 02:46:30 +0000
commit64d7ccb433421599976d17cddde5bb82bd92368f (patch)
tree412d18e1c5f2267ad741aafb1422ecb274d0ca70 /src/lib/crypto/string_to_key.c
parent95a7a6f806c12cc73ffa959ae2290824467036f9 (diff)
downloadkrb5-64d7ccb433421599976d17cddde5bb82bd92368f.tar.gz
krb5-64d7ccb433421599976d17cddde5bb82bd92368f.tar.xz
krb5-64d7ccb433421599976d17cddde5bb82bd92368f.zip
protoize
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16102 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/string_to_key.c')
-rw-r--r--src/lib/crypto/string_to_key.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/src/lib/crypto/string_to_key.c b/src/lib/crypto/string_to_key.c
index 27f49aabe7..03165ab25d 100644
--- a/src/lib/crypto/string_to_key.c
+++ b/src/lib/crypto/string_to_key.c
@@ -37,25 +37,19 @@ krb5_c_string_to_key_with_params(krb5_context context,
krb5_error_code KRB5_CALLCONV
-krb5_c_string_to_key(context, enctype, string, salt, key)
- krb5_context context;
- krb5_enctype enctype;
- const krb5_data *string;
- const krb5_data *salt;
- krb5_keyblock *key;
+krb5_c_string_to_key(krb5_context context, krb5_enctype enctype,
+ const krb5_data *string, const krb5_data *salt,
+ krb5_keyblock *key)
{
return krb5_c_string_to_key_with_params(context, enctype, string, salt,
NULL, key);
}
krb5_error_code KRB5_CALLCONV
-krb5_c_string_to_key_with_params(context, enctype, string, salt, params, key)
- krb5_context context;
- krb5_enctype enctype;
- const krb5_data *string;
- const krb5_data *salt;
- const krb5_data *params;
- krb5_keyblock *key;
+krb5_c_string_to_key_with_params(krb5_context context, krb5_enctype enctype,
+ const krb5_data *string,
+ const krb5_data *salt,
+ const krb5_data *params, krb5_keyblock *key)
{
int i;
krb5_error_code ret;