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

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dmk_req_ext.c280 krb5_generate_authenticator(krb5_context context, krb5_authenticator *authent, krb5_principal client, krb5_checksum *cksum, krb5_keyblock *key, krb5_ui_4 seq_number, krb5_authdata **authorization) argument
284 authent->client = client;
285 authent->checksum = cksum;
287 retval = krb5_copy_keyblock(context, key, &authent->subkey);
291 authent->subkey = 0;
292 authent->seq_number = seq_number;
293 authent->authorization_data = authorization;
295 return(krb5_us_timeofday(context, &authent->ctime, &authent->cusec));
H A Dsend_tgs.c60 krb5_authenticator authent; local
75 authent.subkey = 0;
76 authent.seq_number = 0;
77 authent.checksum = &checksum;
78 authent.client = in_cred->client;
79 authent.authorization_data = in_cred->authdata;
80 if ((retval = krb5_us_timeofday(context, &authent.ctime,
81 &authent.cusec))) {
87 if ((retval = encode_krb5_authenticator(&authent, &scratch))) {

Completed in 44 milliseconds