diff options
author | John Kohl <jtkohl@mit.edu> | 1990-02-01 14:52:15 +0000 |
---|---|---|
committer | John Kohl <jtkohl@mit.edu> | 1990-02-01 14:52:15 +0000 |
commit | d96cbfc1bd497c9e253f772fee9b6b7e4506f4c1 (patch) | |
tree | 4917d66ac11ca32c30d5b7157d4cc1c9c7529d1e /src/include | |
parent | c1d00e2bd86ca1efd62bc756f6df0d334f312313 (diff) | |
download | krb5-d96cbfc1bd497c9e253f772fee9b6b7e4506f4c1.tar.gz krb5-d96cbfc1bd497c9e253f772fee9b6b7e4506f4c1.tar.xz krb5-d96cbfc1bd497c9e253f772fee9b6b7e4506f4c1.zip |
more promotion rule changes
rearrange & clean up the ticket/kdc_rep prototypes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@220 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/krb5/func-proto.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/include/krb5/func-proto.h b/src/include/krb5/func-proto.h index 001a57260..aaae9724b 100644 --- a/src/include/krb5/func-proto.h +++ b/src/include/krb5/func-proto.h @@ -19,28 +19,30 @@ /* libkrb.spec */ krb5_error_code krb5_encode_kdc_rep - PROTOTYPE((int, + PROTOTYPE((int, /* promotion rules require this */ krb5_kdc_rep *, krb5_enc_kdc_rep_part *, krb5_keyblock *, krb5_data ** )); -krb5_error_code krb5_decode_ticket +krb5_error_code krb5_decode_kdc_rep PROTOTYPE((krb5_data *, krb5_keyblock *, - krb5_enctype, - krb5_ticket ** )); + int, /* promotion rules require this */ + krb5_kdc_rep ** )); krb5_error_code krb5_encode_ticket PROTOTYPE((krb5_ticket *, krb5_data ** )); -krb5_error_code krb5_encrypt_tkt_part - PROTOTYPE((krb5_enc_tkt_part *, - krb5_keyblock *, - krb5_ticket * )); -krb5_error_code krb5_decode_kdc_rep +krb5_error_code krb5_decode_ticket PROTOTYPE((krb5_data *, krb5_keyblock *, krb5_enctype, - krb5_kdc_rep ** )); + krb5_ticket ** )); +krb5_error_code krb5_encrypt_tkt_part + PROTOTYPE((krb5_keyblock *, + krb5_ticket * )); +krb5_error_code krb5_decrypt_tkt_part + PROTOTYPE((krb5_keyblock *, + krb5_ticket * )); krb5_error_code krb5_send_tgs PROTOTYPE((krb5_flags, krb5_ticket_times *, |