search for: krb5_cc_gen_new

Displaying 3 results from an estimated 3 matches for "krb5_cc_gen_new".

2003 Aug 08
1
Help request: merging OpenBSD Kerberos change into Portable.
...; @@ -208,6 +208,7 @@ int auth_krb5_password(Authctxt *authctxt, const char *password) { krb5_error_code problem; + krb5_ccache ccache = NULL; if (authctxt->pw == NULL) return (0); @@ -223,30 +224,46 @@ auth_krb5_password(Authctxt *authctxt, c if (problem) goto out; - problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops, - &authctxt->krb5_fwd_ccache); + problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops, &ccache); if (problem) goto out; - problem = krb5_cc_initialize(authctxt->krb5_ctx, - authctxt->krb5_fwd_ccache, authctxt-&g...
2003 Aug 22
1
GSSAPI patch sync from OpenBSD to Portable
...he OpenBSD code to Portable. The second [2] contains the parts I've stolen from Simon Wilkinson's portable GSSAPI patch in an attempt to make it build. It is incomplete and doesn't currently work. The PAM support is not there and gss-serv-krb5.c is broken somehow ("macro "krb5_cc_gen_new" passed 3 arguments, but takes just 2"). I know approximately zero Kerberos and I'm hoping someone who knows what they're doing can help sort this out. Any takers? One other thing: shouldn't Simon now be listed as a copyright holder in OpenSSH's LICENCE? -Daz. [1]...
2003 Aug 10
9
updated gssapi diff
...h_gssapi_client *client) +{ + krb5_ccache ccache; + krb5_error_code problem; + krb5_principal princ; + OM_uint32 maj_status, min_status; + + if (client->creds == NULL) { + debug("No credentials stored"); + return; + } + + if (ssh_gssapi_krb5_init() == 0) + return; + + if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) { + logit("krb5_cc_gen_new(): %.100s", + krb5_get_err_text(krb_context, problem)); + return; + } + + if ((problem = krb5_parse_name(krb_context, + client->exportedname.value, &princ))) { + logit("krb5_parse_name(): %.1...