From 5a9df1e4fd399cfd1b933a084246a02db3caa8a6 Mon Sep 17 00:00:00 2001 From: Sam Hartman Date: Tue, 20 May 2003 21:22:48 +0000 Subject: Implement krb5_get_in_tkt_with_password and krb5_get_in_tkt_with_keytab in terms of krb5_get_init_creds. It turns out that these do in fact need to use get_init_creds not get_init_creds_{password,keytab} because of those functions do not allow the AS request to be returned. Ticket: 1480 Status: open git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15461 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/ChangeLog | 4 ++++ src/include/k5-int.h | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 05817aea1..af9217efd 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,7 @@ +2003-05-19 Sam Hartman + + * k5-int.h: Prototype krb5int_populate_gic_opt + 2003-05-18 Tom Yu * k5-int.h: Sequence numbers are now unsigned. diff --git a/src/include/k5-int.h b/src/include/k5-int.h index 08c7a7a4f..f9a15ef3a 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1989,1990,1991,1992,1993,1994,1995,2000,2001 by the Massachusetts Institute of Technology, + * Copyright (C) 1989,1990,1991,1992,1993,1994,1995,2000,2001, 2003 by the Massachusetts Institute of Technology, * Cambridge, MA, USA. All Rights Reserved. * * This software is being provided to you, the LICENSEE, by the @@ -935,6 +935,11 @@ krb5_get_init_creds int master, krb5_kdc_rep **as_reply); +krb5_error_code krb5int_populate_gic_opt ( + krb5_context, krb5_get_init_creds_opt *, + krb5_flags options, krb5_address * const *addrs, krb5_enctype *ktypes, + krb5_preauthtype *pre_auth_types); + krb5_error_code krb5_do_preauth (krb5_context, krb5_kdc_req *, -- cgit