Home
last modified time | relevance | path

Searched refs:auth (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/external/libdrm/tests/
Dauth.c68 struct drm_auth auth; in client() local
77 auth.magic = 0; /* Quiet valgrind */ in client()
78 ret = ioctl(drmfd, DRM_IOCTL_GET_MAGIC, &auth); in client()
82 ret = write(commfd[0], &auth.magic, sizeof(auth.magic)); in client()
93 struct drm_auth auth; in server() local
97 auth.magic = 0xd0d0d0d0; in server()
98 ret = ioctl(drmfd, DRM_IOCTL_AUTH_MAGIC, &auth); in server()
105 ret = read(commfd[1], &auth.magic, sizeof(auth.magic)); in server()
109 ret = ioctl(drmfd, DRM_IOCTL_AUTH_MAGIC, &auth); in server()
Dlock.c87 struct drm_auth auth; in client_auth() local
91 ret = ioctl(drmfd, DRM_IOCTL_GET_MAGIC, &auth); in client_auth()
95 ret = write(commfd[0], &auth.magic, sizeof(auth.magic)); in client_auth()
103 struct drm_auth auth; in server_auth() local
108 ret = read(commfd[1], &auth.magic, sizeof(auth.magic)); in server_auth()
112 ret = ioctl(drmfd, DRM_IOCTL_AUTH_MAGIC, &auth); in server_auth()
/external/ppp/pppd/plugins/radius/
Dsendserver.c33 static int rc_pack_list (VALUE_PAIR *vp, char *secret, AUTH_HDR *auth) in rc_pack_list() argument
42 buf = auth->data; in rc_pack_list()
107 vector = (char *)auth->vector; in rc_pack_list()
143 memcpy ((char *) md5buf + secretlen, (char *) auth->vector, in rc_pack_list()
200 AUTH_HDR *auth, *recv_auth; in rc_send_server() local
262 auth = (AUTH_HDR *) send_buffer; in rc_send_server()
263 auth->code = data->code; in rc_send_server()
264 auth->id = data->seq_nbr; in rc_send_server()
268 total_length = rc_pack_list(data->send_pairs, secret, auth) + AUTH_HDR_LEN; in rc_send_server()
270 auth->length = htons ((unsigned short) total_length); in rc_send_server()
[all …]
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
Dextras_auth_test.py4 from webapp2_extras import auth
5 from webapp2_extras.appengine.auth import models
33 s = auth.get_store(app=app)
34 a = auth.Auth(request=req)
69 a = auth.Auth(request=req)
108 s = auth.get_store(app=app)
109 a = auth.get_auth(request=req)
145 s = auth.get_store(app=app)
153 self.assertRaises(auth.InvalidPasswordError,
155 self.assertRaises(auth.InvalidAuthIdError,
[all …]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dnetworkconfig.cpp72 int auth, encr = 0; in paramsFromScanResults() local
74 auth = AUTH_WPA2_EAP; in paramsFromScanResults()
76 auth = AUTH_WPA_EAP; in paramsFromScanResults()
78 auth = AUTH_WPA2_PSK; in paramsFromScanResults()
80 auth = AUTH_WPA_PSK; in paramsFromScanResults()
82 auth = AUTH_NONE_OPEN; in paramsFromScanResults()
90 if (auth == AUTH_NONE_OPEN) in paramsFromScanResults()
91 auth = AUTH_NONE_WEP; in paramsFromScanResults()
95 authSelect->setCurrentIndex(auth); in paramsFromScanResults()
96 authChanged(auth); in paramsFromScanResults()
[all …]
/external/jetty/src/java/org/eclipse/jetty/security/
DDefaultAuthenticatorFactory.java59 String auth=configuration.getAuthMethod(); in getAuthenticator() local
62 if (auth==null || Constraint.__BASIC_AUTH.equalsIgnoreCase(auth)) in getAuthenticator()
64 else if (Constraint.__DIGEST_AUTH.equalsIgnoreCase(auth)) in getAuthenticator()
66 else if (Constraint.__FORM_AUTH.equalsIgnoreCase(auth)) in getAuthenticator()
68 else if ( Constraint.__SPNEGO_AUTH.equalsIgnoreCase(auth) ) in getAuthenticator()
70 else if ( Constraint.__NEGOTIATE_AUTH.equalsIgnoreCase(auth) ) // see Bug #377076 in getAuthenticator()
72 … if (Constraint.__CERT_AUTH.equalsIgnoreCase(auth)||Constraint.__CERT_AUTH2.equalsIgnoreCase(auth)) in getAuthenticator()
/external/selinux/policycoreutils/run_init/
Drun_init.pamd3 #auth sufficient pam_rootok.so
4 auth include system-auth
5 account include system-auth
6 password include system-auth
7 session include system-auth
/external/selinux/policycoreutils/newrole/
Dnewrole.pamd3 # auth sufficient pam_rootok.so
4 auth include system-auth
5 account include system-auth
6 password include system-auth
7 session include system-auth
Dnewrole-lspp.pamd2 auth include system-auth
3 account include system-auth
4 password include system-auth
/external/libvncserver/x11vnc/misc/
Dx11vnc_loop70 auth=`get_xauthority_file`
71 if [ ! -r "$auth" ]; then
72 echo "`date` bad auth file: \"$auth\""
76 echo "`date` running: $cmd -auth $auth"
78 $cmd -auth $auth
/external/openssh/contrib/redhat/
Dsshd.pam2 auth required pam_stack.so service=system-auth
4 account required pam_stack.so service=system-auth
5 password required pam_stack.so service=system-auth
6 session required pam_stack.so service=system-auth
/external/apache-http/src/org/apache/http/impl/auth/
DNTLMScheme.java31 package org.apache.http.impl.auth;
35 import org.apache.http.auth.AUTH;
36 import org.apache.http.auth.AuthenticationException;
37 import org.apache.http.auth.Credentials;
38 import org.apache.http.auth.InvalidCredentialsException;
39 import org.apache.http.auth.MalformedChallengeException;
40 import org.apache.http.auth.NTCredentials;
41 import org.apache.http.impl.auth.AuthSchemeBase;
DBasicScheme.java31 package org.apache.http.impl.auth;
36 import org.apache.http.auth.AuthenticationException;
37 import org.apache.http.auth.Credentials;
38 import org.apache.http.auth.AUTH;
39 import org.apache.http.auth.MalformedChallengeException;
40 import org.apache.http.auth.params.AuthParams;
/external/wpa_supplicant_8/wpa_supplicant/
Dibss_rsn.c42 wpa_auth_sta_deinit(peer->auth); in ibss_rsn_free()
351 if (peer->auth && cb(peer->auth, cb_ctx)) in auth_for_each_sta()
448 peer->auth = wpa_auth_sta_init(ibss_rsn->auth_group, peer->addr, NULL); in ibss_rsn_auth_init()
449 if (peer->auth == NULL) { in ibss_rsn_auth_init()
455 if (wpa_validate_wpa_ie(ibss_rsn->auth_group, peer->auth, in ibss_rsn_auth_init()
466 if (wpa_auth_sm_event(peer->auth, WPA_ASSOC)) in ibss_rsn_auth_init()
469 if (wpa_auth_sta_associated(ibss_rsn->auth_group, peer->auth)) in ibss_rsn_auth_init()
478 struct ieee80211_mgmt auth; in ibss_rsn_send_auth() local
479 const size_t auth_length = IEEE80211_HDRLEN + sizeof(auth.u.auth); in ibss_rsn_send_auth()
485 os_memset(&auth, 0, sizeof(auth)); in ibss_rsn_send_auth()
[all …]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DAuthenticatorAdapter.java45 PasswordAuthentication auth = java.net.Authenticator.requestPasswordAuthentication( in authenticate() local
48 if (auth == null) continue; in authenticate()
50 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword())); in authenticate()
68 PasswordAuthentication auth = java.net.Authenticator.requestPasswordAuthentication( in authenticateProxy() local
72 if (auth == null) continue; in authenticateProxy()
74 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword())); in authenticateProxy()
/external/chromium-trace/trace-viewer/third_party/Paste/Paste.egg-info/
Dentry_points.txt31 auth_tkt = paste.auth.auth_tkt:make_auth_tkt_middleware
32 auth_basic = paste.auth.basic:make_basic
33 auth_digest = paste.auth.digest:make_digest
34 auth_form = paste.auth.form:make_form
35 grantip = paste.auth.grantip:make_grantip
36 openid = paste.auth.open_id:make_open_id_middleware [openid]
40 auth_cookie = paste.auth.cookie:make_auth_cookie
DSOURCES.txt37 docs/modules/auth.auth_tkt.txt
38 docs/modules/auth.basic.txt
39 docs/modules/auth.cas.txt
40 docs/modules/auth.cookie.txt
41 docs/modules/auth.digest.txt
42 docs/modules/auth.form.txt
43 docs/modules/auth.grantip.txt
44 docs/modules/auth.multi.txt
117 paste/auth/__init__.py
118 paste/auth/auth_tkt.py
[all …]
/external/ipsec-tools/
Dsetup.c300 int auth, int hash, int encryption, int length) in add_proposal() argument
307 p->authmethod = auth; in add_proposal()
406 int auth; in setup() local
447 auth = OAKLEY_ATTR_AUTH_METHOD_PSKEY; in setup()
453 auth = OAKLEY_ATTR_AUTH_METHOD_RSASIG; in setup()
461 auth = OAKLEY_ATTR_AUTH_METHOD_XAUTH_PSKEY_I; in setup()
465 auth = OAKLEY_ATTR_AUTH_METHOD_XAUTH_RSASIG_I; in setup()
469 auth = OAKLEY_ATTR_AUTH_METHOD_HYBRID_RSA_I; in setup()
490 add_proposal(remoteconf, auth, in setup()
492 add_proposal(remoteconf, auth, in setup()
[all …]
/external/wpa_supplicant_8/src/crypto/
Daes-ccm.c117 static void aes_ccm_encr_auth(void *aes, size_t M, u8 *x, u8 *a, u8 *auth) in aes_ccm_encr_auth() argument
127 auth[i] = x[i] ^ tmp[i]; in aes_ccm_encr_auth()
128 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M); in aes_ccm_encr_auth()
132 static void aes_ccm_decr_auth(void *aes, size_t M, u8 *a, const u8 *auth, u8 *t) in aes_ccm_decr_auth() argument
137 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M); in aes_ccm_decr_auth()
142 t[i] = auth[i] ^ tmp[i]; in aes_ccm_decr_auth()
150 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth) in aes_ccm_ae() argument
169 aes_ccm_encr_auth(aes, M, x, a, auth); in aes_ccm_ae()
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) in aes_ccm_ad() argument
196 aes_ccm_decr_auth(aes, M, a, auth, t); in aes_ccm_ad()
/external/openssh/
DAndroid.mk208 auth-bsdauth.c \
209 auth-chall.c \
210 auth-krb5.c \
211 auth-options.c \
212 auth-pam.c \
213 auth-rh-rsa.c \
214 auth-rhosts.c \
215 auth-rsa.c \
216 auth-shadow.c \
217 auth-sia.c \
[all …]
/external/apache-http/src/org/apache/http/client/protocol/
DRequestProxyAuthentication.java41 import org.apache.http.auth.AUTH;
42 import org.apache.http.auth.AuthScheme;
43 import org.apache.http.auth.AuthState;
44 import org.apache.http.auth.AuthenticationException;
45 import org.apache.http.auth.Credentials;
DRequestTargetAuthentication.java41 import org.apache.http.auth.AUTH;
42 import org.apache.http.auth.AuthScheme;
43 import org.apache.http.auth.AuthState;
44 import org.apache.http.auth.AuthenticationException;
45 import org.apache.http.auth.Credentials;
/external/wpa_supplicant_8/hostapd/
Deap_testing.txt59 EAP-FAST/GTC(auth) + - + - +
66 EAP-FAST/MSCHAPv2(auth) + - + - +
67 EAP-FAST/MD5(auth) + - + - -
68 EAP-FAST/TLS(auth) + - - - -
69 EAP-FAST/SIM(auth) + - - - -
70 EAP-FAST/AKA(auth) + - - - -
/external/jetty/src/config/etc/
DREADME.spnego7 -Djava.security.auth.login.config=/path/to/jetty/etc/spnego.conf
8 -Djavax.security.auth.useSubjectCredsOnly=false
25 <auth-constraint>
27 </auth-constraint>
31 <auth-method>SPNEGO</auth-method>
/external/chromium-trace/trace-viewer/third_party/Paste/docs/
Ddeveloper-features.txt70 * Handle authentication/identification of requests in :mod:`paste.auth`
89 * Authentication using cookies in :mod:`paste.auth.cookie` and
90 :mod:`paste.auth.auth_tkt`; login form in :mod:`paste.auth.form`
93 :mod:`paste.auth.open_id`, using `CAS
94 <http://www.ja-sig.org/products/cas/>`_ in :mod:`paste.auth.cas`
96 * HTTP authentication in :mod:`paste.auth.basic` and
97 :mod:`paste.auth.digest`
100 :mod:`paste.auth.multi`
102 * Grant roles based on IP addresses, in :mod:`paste.auth.grantip`

12345678910>>...13