| /freebsd-13.1/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()
|
| /freebsd-13.1/crypto/openssh/ |
| H A D | auth2.c | 267 int r, authenticated = 0; in input_userauth_request() local 336 authenticated = m->userauth(ssh); in input_userauth_request() 338 if (!authctxt->authenticated) in input_userauth_request() 358 if (!authctxt->valid && authenticated) in userauth_finish() 361 if (authenticated && authctxt->postponed) in userauth_finish() 367 authenticated = 0; in userauth_finish() 375 authenticated = 0; in userauth_finish() 384 if (authenticated || partial) in userauth_finish() 391 if (options.use_pam && authenticated) { in userauth_finish() 412 if (authenticated == 1) { in userauth_finish() [all …]
|
| H A D | auth2-kbdint.c | 49 int r, authenticated = 0; in userauth_kbdint() local 60 authenticated = auth2_challenge(ssh, devs); in userauth_kbdint() 64 return authenticated; in userauth_kbdint()
|
| H A D | auth2-passwd.c | 55 int authenticated = 0, r; in userauth_passwd() local 68 authenticated = 1; in userauth_passwd() 70 return authenticated; in userauth_passwd()
|
| H A D | auth2-hostbased.c | 68 int r, pktype, authenticated = 0; in userauth_hostbased() local 149 authenticated = 0; in userauth_hostbased() 154 authenticated = 1; in userauth_hostbased() 156 auth2_record_key(authctxt, authenticated, key); in userauth_hostbased() 159 debug2_f("authenticated %d", authenticated); in userauth_hostbased() 166 return authenticated; in userauth_hostbased()
|
| H A D | auth2-gss.c | 250 int r, authenticated; in input_gssapi_exchange_complete() local 264 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); in input_gssapi_exchange_complete() 275 userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL); in input_gssapi_exchange_complete() 284 int r, authenticated = 0; in input_gssapi_mic() local 310 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); in input_gssapi_mic() 326 userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL); in input_gssapi_mic()
|
| H A D | monitor.c | 295 while (!authenticated) { in monitor_child_preauth() 306 if (authenticated && in monitor_child_preauth() 310 authenticated = 0; in monitor_child_preauth() 315 if (authenticated) { in monitor_child_preauth() 321 authenticated = 0; in monitor_child_preauth() 341 if (!partial && !authenticated) in monitor_child_preauth() 343 if (authenticated || partial) { in monitor_child_preauth() 883 int r, authenticated; in mm_answer_authpassword() local 914 return (authenticated); in mm_answer_authpassword() 1917 int r, authenticated; in mm_answer_gss_userok() local [all …]
|
| H A D | auth2-pubkey.c | 99 int req_presence = 0, req_verify = 0, authenticated = 0; in userauth_pubkey() local 204 authenticated = 0; in userauth_pubkey() 210 authenticated = 1; in userauth_pubkey() 212 if (authenticated == 1 && sig_details != NULL) { in userauth_pubkey() 229 authenticated = 0; in userauth_pubkey() 243 authenticated = 0; in userauth_pubkey() 247 auth2_record_key(authctxt, authenticated, key); in userauth_pubkey() 279 if (authenticated == 1 && auth_activate_options(ssh, authopts) != 0) { in userauth_pubkey() 281 authenticated = 0; in userauth_pubkey() 283 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 | monitor_wrap.c | 403 int r, authenticated = 0; in mm_auth_password() local 420 if ((r = sshbuf_get_u32(m, &authenticated)) != 0) in mm_auth_password() 432 debug3_f("user %sauthenticated", authenticated ? "" : "not "); in mm_auth_password() 433 return (authenticated); in mm_auth_password() 1005 int r, authenticated = 0; in mm_ssh_gssapi_userok() local 1014 if ((r = sshbuf_get_u32(m, &authenticated)) != 0) in mm_ssh_gssapi_userok() 1018 debug3_f("user %sauthenticated", authenticated ? "" : "not "); in mm_ssh_gssapi_userok() 1019 return (authenticated); in mm_ssh_gssapi_userok()
|
| H A D | auth.c | 314 auth_log(struct ssh *ssh, int authenticated, int partial, in auth_log() argument 326 if (authenticated == 1 || in auth_log() 337 authmsg = authenticated ? "Accepted" : "Failed"; in auth_log() 338 if (authenticated) in auth_log() 361 if (authenticated == 0 && !(authctxt->postponed || partial)) { in auth_log() 376 if (authenticated) in auth_log()
|
| H A D | PROTOCOL.chacha20poly1305 | 1 This document describes the [email protected] authenticated 17 authenticated encryption mode. The construction used is based on that
|
| /freebsd-13.1/contrib/telnet/libtelnet/ |
| H A D | auth.c | 99 static Authenticator *authenticated = 0; variable 205 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()
|
| /freebsd-13.1/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()
|
| /freebsd-13.1/sys/dev/drm2/ |
| H A D | drm_fops.c | 202 priv->authenticated = DRM_SUSER(p); in drm_open_helper() 240 priv->authenticated = 1; in drm_open_helper() 411 temp->authenticated = 0; in drm_release()
|
| H A D | drm_vm.c | 68 if (file_priv && !file_priv->authenticated) in drm_mmap()
|
| H A D | drm_drv.c | 384 file_priv->authenticated); in drm_ioctl() 461 ((ioctl->flags & DRM_AUTH) && !file_priv->authenticated) || in drm_ioctl() 492 file_priv->authenticated, -retcode); in drm_ioctl()
|
| H A D | drm_auth.c | 193 file->authenticated = 1; in drm_authmagic()
|
| /freebsd-13.1/crypto/heimdal/etc/ |
| H A D | services.append | 10 klogin 543/tcp # Kerberos authenticated rlogin
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_repos/ |
| H A D | authz_parse.c | 851 svn_boolean_t authenticated = FALSE; in add_access_entry() local 889 authenticated = TRUE; in add_access_entry() 896 authenticated = TRUE; in add_access_entry() 905 authenticated = TRUE; in add_access_entry() 951 if (anonymous || authenticated) in add_access_entry() 958 if (authenticated) in add_access_entry()
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | EVP_chacha20.pod | 37 is 256 bits and the IV is 96 bits. This supports additional authenticated data
|
| /freebsd-13.1/contrib/googletest/googletest/scripts/ |
| H A D | upload.py | 145 self.authenticated = False 237 self.authenticated = True 310 if not self.authenticated: 373 self.authenticated = True 490 server.authenticated = True
|
| /freebsd-13.1/contrib/googletest/googlemock/scripts/ |
| H A D | upload.py | 145 self.authenticated = False 237 self.authenticated = True 310 if not self.authenticated: 373 self.authenticated = True 490 server.authenticated = True
|