diff options
Diffstat (limited to 'src/lib/crypto/string_to_key.c')
-rw-r--r-- | src/lib/crypto/string_to_key.c | 20 |
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; |