Lines Matching refs:cred

540 flags_string(cred)  in flags_string()  argument
541 register krb5_creds *cred; in flags_string()
546 if (cred->ticket_flags & TKT_FLG_FORWARDABLE)
548 if (cred->ticket_flags & TKT_FLG_FORWARDED)
550 if (cred->ticket_flags & TKT_FLG_PROXIABLE)
552 if (cred->ticket_flags & TKT_FLG_PROXY)
554 if (cred->ticket_flags & TKT_FLG_MAY_POSTDATE)
556 if (cred->ticket_flags & TKT_FLG_POSTDATED)
558 if (cred->ticket_flags & TKT_FLG_INVALID)
560 if (cred->ticket_flags & TKT_FLG_RENEWABLE)
562 if (cred->ticket_flags & TKT_FLG_INITIAL)
564 if (cred->ticket_flags & TKT_FLG_HW_AUTH)
566 if (cred->ticket_flags & TKT_FLG_PRE_AUTH)
568 if (cred->ticket_flags & TKT_FLG_TRANSIT_POLICY_CHECKED)
570 if (cred->ticket_flags & TKT_FLG_OK_AS_DELEGATE)
572 if (cred->ticket_flags & TKT_FLG_ANONYMOUS)
593 show_credential(cred) in show_credential() argument
594 register krb5_creds * cred; in show_credential()
601 retval = krb5_unparse_name(kcontext, cred->client, &name);
607 retval = krb5_unparse_name(kcontext, cred->server, &sname);
614 if (!cred->times.starttime)
615 cred->times.starttime = cred->times.authtime;
617 printtime(cred->times.starttime);
619 printtime(cred->times.endtime);
629 if (cred->times.renew_till) {
635 printtime(cred->times.renew_till);
645 flags = flags_string(cred);
662 retval = decode_krb5_ticket(&cred->ticket, &tkt);
671 etype_string(cred->keyblock.enctype));
687 if (!cred->addresses || !cred->addresses[0]) {
693 one_addr(cred->addresses[0]);
695 for (i=1; cred->addresses[i]; i++) {
697 one_addr(cred->addresses[i]);