Searched defs:ccache (Results 1 - 2 of 2) sorted by relevance

/external/openssh/
H A Dgss-serv-krb5.c118 krb5_ccache ccache; local
133 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) {
139 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) {
150 krb5_cc_destroy(krb_context, ccache);
154 if ((problem = krb5_cc_initialize(krb_context, ccache, princ))) {
158 krb5_cc_destroy(krb_context, ccache);
165 client->creds, ccache))) {
167 krb5_cc_destroy(krb_context, ccache);
171 client->store.filename = xstrdup(krb5_cc_get_name(krb_context, ccache));
182 krb5_cc_close(krb_context, ccache);
[all...]
H A Dauth-krb5.c79 krb5_ccache ccache = NULL; local
99 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops, &ccache);
103 problem = krb5_cc_initialize(authctxt->krb5_ctx, ccache,
111 ccache, password, 1, NULL);
123 problem = krb5_cc_copy_cache(authctxt->krb5_ctx, ccache,
125 krb5_cc_destroy(authctxt->krb5_ctx, ccache);
126 ccache = NULL;
188 if (ccache)
189 krb5_cc_destroy(authctxt->krb5_ctx, ccache);
228 ssh_krb5_cc_gen(krb5_context ctx, krb5_ccache *ccache) { argument
[all...]

Completed in 214 milliseconds