HomeSort by: relevance | last modified time | path
    Searched defs:auth_context (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.bin/login/
k5login.c 131 krb5_auth_context auth_context = NULL; local in function:k5_verify_creds
155 kerror = krb5_mk_req(c, &auth_context, 0, "host", phost,
158 if (auth_context) {
159 krb5_auth_con_free(c, auth_context);
160 auth_context = NULL;
185 kerror = krb5_rd_req(c, &auth_context, &packet,
220 if (auth_context)
221 krb5_auth_con_free(c, auth_context);
  /src/lib/libtelnet/
kerberos5.c 96 static krb5_auth_context auth_context; variable in typeref:typename:krb5_auth_context
211 ret = krb5_auth_con_init(telnet_context, &auth_context);
221 auth_context, &net);
230 krb5_auth_con_setkeytype(telnet_context, auth_context,
238 ret = krb5_mk_req(telnet_context, &auth_context, ap_opts, "host",
282 auth_context = NULL;
284 ret = krb5_auth_con_init(telnet_context, &auth_context);
294 auth_context, &zero);
315 ret = krb5_rd_req(telnet_context, &auth_context, &auth,
337 auth_context, foo, sizeof(foo))
    [all...]
  /src/lib/libpam/modules/pam_krb5/
pam_krb5.c 1016 krb5_auth_context auth_context = NULL; local in function:verify_krb_v5_tgt
1025 auth_context = NULL;
1026 retval = krb5_mk_req(context, &auth_context, 0, service, phost,
1028 if (auth_context) {
1029 krb5_auth_con_free(context, auth_context);
1030 auth_context = NULL; /* setup for rd_req */
1042 retval = krb5_rd_req(context, &auth_context, &packet, princ, NULL,
1057 if (auth_context) {
1058 krb5_auth_con_free(context, auth_context);
1059 auth_context = NULL; /* setup for rd_req *
    [all...]

Completed in 63 milliseconds