summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorChris Provenzano <proven@mit.edu>1995-02-08 01:33:30 +0000
committerChris Provenzano <proven@mit.edu>1995-02-08 01:33:30 +0000
commitb8e0e13fac14038727fd80d7b2daf7374f574594 (patch)
tree37a7631a19597a3261cc4b16990817c79f29ec4f /src/include
parent64124151afeb04893b8a81ca59705afe496fef25 (diff)
downloadkrb5-b8e0e13fac14038727fd80d7b2daf7374f574594.tar.gz
krb5-b8e0e13fac14038727fd80d7b2daf7374f574594.tar.xz
krb5-b8e0e13fac14038727fd80d7b2daf7374f574594.zip
* func-proto.h (krb5_get_in_tkt()) Changed key_proc args to be the
following (krb5_context, const krb5_keytype, krb5_data *, krb5_const_pointer, krb5_keyblock **) * func-proto.h (krb5_get_in_tkt_*()) Removed krb5_keytype, changed krb5_enctype to krb5_enctype *, changed krb5_preauthtype to krb5_preauthtype *. * func-proto.h Added new routine krb5_get_in_tkt_with_keytab(). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4919 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/ChangeLog12
-rw-r--r--src/include/krb5/func-proto.h31
2 files changed, 32 insertions, 11 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog
index 045a98265..8af044642 100644
--- a/src/include/krb5/ChangeLog
+++ b/src/include/krb5/ChangeLog
@@ -1,3 +1,15 @@
+Mon Feb 06 17:19:04 1995 Chris Provenzano (proven@mit.edu)
+
+ * func-proto.h (krb5_get_in_tkt()) Changed key_proc args to be the
+ following (krb5_context, const krb5_keytype, krb5_data *,
+ krb5_const_pointer, krb5_keyblock **)
+
+ * func-proto.h (krb5_get_in_tkt_*()) Removed krb5_keytype, changed
+ krb5_enctype to krb5_enctype *, changed krb5_preauthtype to
+ krb5_preauthtype *.
+
+ * func-proto.h Added new routine krb5_get_in_tkt_with_keytab().
+
Fri Feb 3 07:57:31 1995 Theodore Y. Ts'o (tytso@dcl)
* configure.in: Use politically correct name of AC_CHECK_SIZEOF
diff --git a/src/include/krb5/func-proto.h b/src/include/krb5/func-proto.h
index a8d2cf580..bd7bb6832 100644
--- a/src/include/krb5/func-proto.h
+++ b/src/include/krb5/func-proto.h
@@ -437,14 +437,13 @@ krb5_error_code krb5_get_in_tkt
PROTOTYPE((krb5_context,
const krb5_flags,
krb5_address * const *,
- const krb5_preauthtype,
- const krb5_enctype,
- const krb5_keytype,
+ krb5_enctype *,
+ krb5_preauthtype *,
krb5_error_code (* )(krb5_context,
const krb5_keytype,
- krb5_keyblock **,
+ krb5_data *,
krb5_const_pointer,
- krb5_pa_data **),
+ krb5_keyblock **),
krb5_const_pointer,
krb5_error_code (* )(krb5_context,
const krb5_keyblock *,
@@ -459,9 +458,8 @@ krb5_error_code krb5_get_in_tkt_with_password
PROTOTYPE((krb5_context,
const krb5_flags,
krb5_address * const *,
- const krb5_preauthtype pre_auth_type,
- const krb5_enctype,
- const krb5_keytype,
+ krb5_enctype *,
+ krb5_preauthtype *,
const char *,
krb5_ccache,
krb5_creds *,
@@ -471,19 +469,30 @@ krb5_error_code krb5_get_in_tkt_with_skey
PROTOTYPE((krb5_context,
const krb5_flags,
krb5_address * const *,
- const krb5_preauthtype pre_auth_type,
- const krb5_enctype,
+ krb5_enctype *,
+ krb5_preauthtype *,
const krb5_keyblock *,
krb5_ccache,
krb5_creds *,
krb5_kdc_rep ** ));
+krb5_error_code krb5_get_in_tkt_with_keytab
+ PROTOTYPE((krb5_context,
+ const krb5_flags,
+ krb5_address * const *,
+ krb5_enctype *,
+ krb5_preauthtype *,
+ const krb5_keytab,
+ krb5_ccache,
+ krb5_creds *,
+ krb5_kdc_rep ** ));
+
+
krb5_error_code krb5_decode_kdc_rep
PROTOTYPE((krb5_context,
krb5_data *,
const krb5_keyblock *,
const krb5_enctype,
-
krb5_kdc_rep ** ));
typedef krb5_error_code (*krb5_rdreq_key_proc) PROTOTYPE((krb5_context,