Searched refs:auth (Results 26 - 50 of 283) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/impl/auth/
H A DUnsupportedDigestAlgorithmException.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/UnsupportedDigestAlgorithmException.java $
31 package org.apache.http.impl.auth;
H A DAuthSchemeBase.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/AuthSchemeBase.java $
31 package org.apache.http.impl.auth;
35 import org.apache.http.auth.AUTH;
36 import org.apache.http.auth.AuthScheme;
37 import org.apache.http.auth.MalformedChallengeException;
/external/openssh/contrib/aix/
H A Dpam.conf7 sshd auth required /usr/lib/security/pam_aix
8 OTHER auth required /usr/lib/security/pam_aix
/external/ppp/pppd/plugins/radius/
H A Dsendserver.c33 static int rc_pack_list (VALUE_PAIR *vp, char *secret, AUTH_HDR *auth) argument
42 buf = auth->data;
107 vector = (char *)auth->vector;
143 memcpy ((char *) md5buf + secretlen, (char *) auth->vector,
200 AUTH_HDR *auth, *recv_auth; local
262 auth = (AUTH_HDR *) send_buffer;
263 auth->code = data->code;
264 auth->id = data->seq_nbr;
268 total_length = rc_pack_list(data->send_pairs, secret, auth) + AUTH_HDR_LEN;
270 auth
395 rc_check_reply(AUTH_HDR *auth, int bufferlen, char *secret, unsigned char *vector, unsigned char seq_nbr) argument
[all...]
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
H A Dextras_auth_test.py4 from webapp2_extras import auth namespace
5 from webapp2_extras.appengine.auth import models
20 def _check_token(self, user_id, token, subject='auth'):
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)
120 self.assertEqual(session_store.sessions['auth'].session_args['max_age'],
126 self.assertEqual(session_store.sessions['auth']
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultProxyAuthenticationHandler.java39 import org.apache.http.auth.AUTH;
40 import org.apache.http.auth.MalformedChallengeException;
H A DDefaultTargetAuthenticationHandler.java39 import org.apache.http.auth.AUTH;
40 import org.apache.http.auth.MalformedChallengeException;
H A DDefaultUserTokenHandler.java37 import org.apache.http.auth.AuthScheme;
38 import org.apache.http.auth.AuthState;
39 import org.apache.http.auth.Credentials;
/external/libdrm/tests/
H A Dlock.c87 struct drm_auth auth; local
90 /* Get a client magic number and pass it to the master for auth. */
91 ret = ioctl(drmfd, DRM_IOCTL_GET_MAGIC, &auth);
95 ret = write(commfd[0], &auth.magic, sizeof(auth.magic));
97 err(1, "Couldn't write auth data");
103 struct drm_auth auth; local
108 ret = read(commfd[1], &auth.magic, sizeof(auth.magic));
112 ret = ioctl(drmfd, DRM_IOCTL_AUTH_MAGIC, &auth);
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DAuthenticatorAdapter.java45 PasswordAuthentication auth = java.net.Authenticator.requestPasswordAuthentication(
48 if (auth == null) continue;
50 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword()));
68 PasswordAuthentication auth = java.net.Authenticator.requestPasswordAuthentication(
72 if (auth == null) continue;
74 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword()));
/external/apache-http/src/org/apache/http/auth/
H A DAuthScheme.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthScheme.java $
31 package org.apache.http.auth;
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
H A Dbasic.py15 >>> # from paste.auth.basic import AuthBasicHandler
44 (authmeth, auth) = authorization.split(' ', 1)
47 auth = auth.strip().decode('base64')
48 username, password = auth.split(':', 1)
/external/jetty/src/java/org/eclipse/jetty/security/authentication/
H A DLoginCallback.java23 import javax.security.auth.Subject;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dnetworkconfig.cpp72 int auth, encr = 0; local
74 auth = AUTH_WPA2_EAP;
76 auth = AUTH_WPA_EAP;
78 auth = AUTH_WPA2_PSK;
80 auth = AUTH_WPA_PSK;
82 auth = AUTH_NONE_OPEN;
90 if (auth == AUTH_NONE_OPEN)
91 auth = AUTH_NONE_WEP;
95 authSelect->setCurrentIndex(auth);
96 authChanged(auth);
191 int auth = authSelect->currentIndex(); local
534 int auth = AUTH_NONE_OPEN, encr = 0; local
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-ccm.c117 static void aes_ccm_encr_auth(void *aes, size_t M, u8 *x, u8 *a, u8 *auth) argument
127 auth[i] = x[i] ^ tmp[i];
128 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
132 static void aes_ccm_decr_auth(void *aes, size_t M, u8 *a, const u8 *auth, u8 *t) argument
137 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
142 t[i] = auth[i] ^ tmp[i];
150 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth)
169 aes_ccm_encr_auth(aes, M, x, a, auth);
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain)
196 aes_ccm_decr_auth(aes, M, a, auth,
148 aes_ccm_ae(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *plain, size_t plain_len, const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth) argument
178 aes_ccm_ad(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *crypt, size_t crypt_len, const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) argument
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Daes-ccm.c117 static void aes_ccm_encr_auth(void *aes, size_t M, u8 *x, u8 *a, u8 *auth) argument
127 auth[i] = x[i] ^ tmp[i];
128 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
132 static void aes_ccm_decr_auth(void *aes, size_t M, u8 *a, const u8 *auth, u8 *t) argument
137 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
142 t[i] = auth[i] ^ tmp[i];
150 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth)
169 aes_ccm_encr_auth(aes, M, x, a, auth);
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain)
196 aes_ccm_decr_auth(aes, M, a, auth,
148 aes_ccm_ae(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *plain, size_t plain_len, const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth) argument
178 aes_ccm_ad(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *crypt, size_t crypt_len, const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-ccm.c117 static void aes_ccm_encr_auth(void *aes, size_t M, u8 *x, u8 *a, u8 *auth) argument
127 auth[i] = x[i] ^ tmp[i];
128 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
132 static void aes_ccm_decr_auth(void *aes, size_t M, u8 *a, const u8 *auth, u8 *t) argument
137 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
142 t[i] = auth[i] ^ tmp[i];
150 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth)
169 aes_ccm_encr_auth(aes, M, x, a, auth);
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain)
196 aes_ccm_decr_auth(aes, M, a, auth,
148 aes_ccm_ae(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *plain, size_t plain_len, const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth) argument
178 aes_ccm_ad(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *crypt, size_t crypt_len, const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) argument
[all...]
/external/openssh/
H A 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
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DKSCallbackHandlerProtectionTest.java26 import javax.security.auth.callback.CallbackHandler;
/external/apache-http/src/org/apache/http/auth/params/
H A DAuthParams.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/params/AuthParams.java $
32 package org.apache.http.auth.params;
62 * {@link org.apache.http.auth.Credentials}.
88 * {@link org.apache.http.auth.Credentials}.
/external/apache-http/src/org/apache/http/client/params/
H A DAllClientPNames.java36 import org.apache.http.auth.params.AuthPNames;
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_auth/
H A Dtest_auth_digest.py5 from paste.auth.digest import *
73 auth = HTTPDigestAuthHandler()
74 auth.add_password(realm,uri,username,password)
75 opener = build_opener(auth)
/external/jetty/src/java/org/eclipse/jetty/security/
H A DIdentityService.java23 import javax.security.auth.Subject;
H A DSpnegoUserIdentity.java24 import javax.security.auth.Subject;
/external/jetty/src/java/org/eclipse/jetty/server/
H A DUserIdentity.java23 import javax.security.auth.Subject;

Completed in 745 milliseconds

1234567891011>>