Home | History | Annotate | Download | only in login

Lines Matching defs:ccache

123 k5_verify_creds(krb5_context c, krb5_ccache ccache)
156 0, ccache, &packet);
238 krb5_ccache ccache;
244 kerror = krb5_cc_default(kcontext, &ccache);
246 krb5_warn(kcontext, kerror, "while getting default ccache");
270 kerror = krb5_cc_retrieve_cred(kcontext, ccache, 0,
286 krb5_cc_destroy(kcontext, ccache);
294 krb5_ccache ccache;
299 kerror = krb5_cc_default(kcontext, &ccache);
301 krb5_warn(kcontext, kerror, "while getting default ccache");
305 kerror = krb5_cc_initialize(kcontext, ccache, me);
308 "while re-initializing V5 ccache as user");
312 kerror = krb5_cc_store_cred(kcontext, ccache, &forw_creds);
315 "while re-storing V5 ccache as user");
335 krb5_ccache ccache = NULL;
380 if ((kerror = krb5_cc_resolve(kcontext, tkt_location, &ccache)) != 0) {
381 k5_log(kcontext, kerror, "while getting default ccache");
395 kerror = krb5_cc_initialize(kcontext, ccache, me);
417 kerror = krb5_cc_store_cred(kcontext, ccache, &my_creds);
432 if (k5_verify_creds(kcontext, ccache) < 0)
447 krb5_ccache ccache = NULL;
452 kerror = krb5_cc_resolve(kcontext, krb5tkfile_env, &ccache);
454 (void)krb5_cc_destroy(kcontext, ccache);