| /src/crypto/heimdal/lib/gssapi/mech/ |
| H A D | gss_get_name_attribute.c | 39 int *authenticated, in gss_get_name_attribute() argument 50 if (authenticated != NULL) in gss_get_name_attribute() 51 *authenticated = 0; in gss_get_name_attribute() 69 authenticated, in gss_get_name_attribute()
|
| H A D | gss_authorize_localname.c | 85 int authenticated = 0, complete = 0; in attr_authorize_localname() local 90 &authenticated, in attr_authorize_localname() 101 if (authenticated && in attr_authorize_localname()
|
| H A D | gss_pname_to_uid.c | 77 int authenticated = 0, complete = 0; in attr_pname_to_uid() 89 &authenticated, in attr_pname_to_uid()
|
| /src/crypto/heimdal/appl/telnet/libtelnet/ |
| H A D | auth.c | 98 static Authenticator *authenticated = 0; variable 196 authenticated = 0; in auth_init() 544 if (!(authenticated = ap)) in auth_finished() 545 authenticated = &NoAuth; in auth_finished() 567 while (!authenticated) in auth_wait() 576 if (!authenticated || authenticated == &NoAuth) in auth_wait() 582 if (authenticated->status) in auth_wait() 583 validuser = (*authenticated->status)(authenticated, in auth_wait()
|
| /src/contrib/telnet/libtelnet/ |
| H A D | auth.c | 96 static Authenticator *authenticated = 0; variable 202 authenticated = 0; in auth_init() 541 if (!(authenticated = ap)) in auth_finished() 542 authenticated = &NoAuth; in auth_finished() 564 while (!authenticated) in auth_wait() 573 if (!authenticated || authenticated == &NoAuth) in auth_wait() 579 if (authenticated->status) in auth_wait() 580 validuser = (*authenticated->status)(authenticated, in auth_wait()
|
| /src/crypto/krb5/src/lib/gssapi/mechglue/ |
| H A D | g_get_name_attr.c | 34 int *authenticated, in gss_get_name_attribute() argument 46 if (authenticated != NULL) in gss_get_name_attribute() 47 *authenticated = 0; in gss_get_name_attribute() 84 authenticated, in gss_get_name_attribute()
|
| H A D | g_map_name_to_any.c | 33 int authenticated, in gss_map_name_to_any() argument 70 authenticated, in gss_map_name_to_any()
|
| H A D | g_authorize_localname.c | 98 int authenticated = 0, complete = 0; in attr_authorize_localname() local 103 &authenticated, in attr_authorize_localname() 113 if (authenticated && in attr_authorize_localname()
|
| H A D | gssd_pname_to_uid.c | 80 int authenticated = 0, complete = 0; in attr_localname() local 90 &authenticated, in attr_localname() 100 if (!authenticated) in attr_localname()
|
| /src/crypto/openssh/ |
| H A D | auth2.c | 274 int r, authenticated = 0; in input_userauth_request() local 346 authenticated = m->userauth(ssh, method); in input_userauth_request() 348 if (!authctxt->authenticated && strcmp(method, "none") != 0) in input_userauth_request() 351 userauth_finish(ssh, authenticated, method, NULL); in input_userauth_request() 361 userauth_finish(struct ssh *ssh, int authenticated, const char *packet_method, in userauth_finish() argument 370 if (authenticated) { in userauth_finish() 384 if (authenticated && authctxt->pw->pw_uid == 0 && in userauth_finish() 386 authenticated = 0; in userauth_finish() 392 if (authenticated && options.num_auth_methods != 0) { in userauth_finish() 394 authenticated = 0; in userauth_finish() [all …]
|
| H A D | auth2-kbdint.c | 50 int r, authenticated = 0; in userauth_kbdint() local 61 authenticated = auth2_challenge(ssh, devs); in userauth_kbdint() 65 return authenticated; in userauth_kbdint()
|
| H A D | auth2-passwd.c | 56 int authenticated = 0, r; in userauth_passwd() local 71 authenticated = 1; in userauth_passwd() 73 return authenticated; in userauth_passwd()
|
| H A D | auth2-hostbased.c | 68 int r, pktype, authenticated = 0; in userauth_hostbased() local 148 authenticated = 0; in userauth_hostbased() 153 authenticated = 1; in userauth_hostbased() 155 auth2_record_key(authctxt, authenticated, key); in userauth_hostbased() 158 debug2_f("authenticated %d", authenticated); in userauth_hostbased() 165 return authenticated; in userauth_hostbased()
|
| H A D | auth2-gss.c | 257 int r, authenticated; in input_gssapi_exchange_complete() local 270 authenticated = mm_ssh_gssapi_userok(authctxt->user); in input_gssapi_exchange_complete() 277 userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL); in input_gssapi_exchange_complete() 286 int r, authenticated = 0; in input_gssapi_mic() local 311 authenticated = mm_ssh_gssapi_userok(authctxt->user); in input_gssapi_mic() 323 userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL); in input_gssapi_mic()
|
| H A D | monitor.c | 277 int authenticated = 0, partial = 0; in monitor_child_preauth() local 300 while (!authenticated) { in monitor_child_preauth() 306 authenticated = (monitor_read(ssh, pmonitor, in monitor_child_preauth() 315 if (authenticated && in monitor_child_preauth() 319 authenticated = 0; in monitor_child_preauth() 324 if (authenticated) { in monitor_child_preauth() 330 authenticated = 0; in monitor_child_preauth() 333 if (options.use_pam && authenticated) { in monitor_child_preauth() 341 authenticated = mm_answer_pam_account( in monitor_child_preauth() 348 auth_log(ssh, authenticated, partial, in monitor_child_preauth() [all …]
|
| H A D | auth2-pubkey.c | 104 int req_presence = 0, req_verify = 0, authenticated = 0; in userauth_pubkey() local 227 authenticated = 0; in userauth_pubkey() 233 authenticated = 1; in userauth_pubkey() 235 if (authenticated == 1 && sig_details != NULL) { in userauth_pubkey() 252 authenticated = 0; in userauth_pubkey() 266 authenticated = 0; in userauth_pubkey() 270 auth2_record_key(authctxt, authenticated, key); in userauth_pubkey() 302 if (authenticated == 1 && auth_activate_options(ssh, authopts) != 0) { in userauth_pubkey() 304 authenticated = 0; in userauth_pubkey() 306 debug2_f("authenticated %d pkalg %s", authenticated, pkalg); in userauth_pubkey() [all …]
|
| H A D | auth2-chall.c | 294 int authenticated = 0, res; in input_userauth_info_response() local 336 authenticated = authctxt->valid ? 1 : 0; in input_userauth_info_response() 349 if (authenticated) { in input_userauth_info_response() 357 userauth_finish(ssh, authenticated, "keyboard-interactive", in input_userauth_info_response()
|
| H A D | auth.c | 267 auth_log(struct ssh *ssh, int authenticated, int partial, in auth_log() argument 279 if (authenticated == 1 || in auth_log() 290 authmsg = authenticated ? "Accepted" : "Failed"; in auth_log() 291 if (authenticated) in auth_log() 315 if (authenticated == 0 && !(authctxt->postponed || partial)) { in auth_log() 330 if (authenticated) in auth_log()
|
| H A D | monitor_wrap.c | 450 int r, authenticated = 0; in mm_auth_password() local 467 if ((r = sshbuf_get_u32(m, &authenticated)) != 0) in mm_auth_password() 479 debug3_f("user %sauthenticated", authenticated ? "" : "not "); in mm_auth_password() 480 return (authenticated); in mm_auth_password() 1116 int r, authenticated = 0; in mm_ssh_gssapi_userok() local 1125 if ((r = sshbuf_get_u32(m, &authenticated)) != 0) in mm_ssh_gssapi_userok() 1129 debug3_f("user %sauthenticated", authenticated ? "" : "not "); in mm_ssh_gssapi_userok() 1130 return (authenticated); in mm_ssh_gssapi_userok()
|
| /src/contrib/pam-krb5/tests/data/scripts/expired/ |
| H A D | defer-mit | 30 INFO user %u authenticated as %0 (expired) 33 INFO user %u authenticated as %0
|
| H A D | defer-mit-debug | 35 INFO user %u authenticated as %0 (expired) 47 INFO user %u authenticated as %0
|
| /src/crypto/openssl/doc/man3/ |
| H A D | CMS_add0_cert.pod | 30 I<cms> must be of type signed data or (authenticated) enveloped data. 38 I<cms> must be of type signed data or (authenticated) enveloped data. 49 data or authenticated enveloped data or an error will be returned.
|
| /src/crypto/krb5/src/lib/gssapi/krb5/ |
| H A D | naming_exts.c | 309 int *authenticated, in krb5_gss_get_name_attribute() argument 363 if (authenticated != NULL) in krb5_gss_get_name_attribute() 364 *authenticated = kauthenticated; in krb5_gss_get_name_attribute() 480 int authenticated, in krb5_gss_map_name_to_any() argument 519 authenticated, in krb5_gss_map_name_to_any()
|
| /src/contrib/pam-krb5/tests/data/scripts/pam-user/ |
| H A D | update | 20 INFO user %0 authenticated as %1
|
| /src/contrib/pam-krb5/tests/data/scripts/fast/ |
| H A D | anonymous | 17 INFO user %u authenticated as %0
|