Home
last modified time | relevance | path

Searched refs:credential (Results 1 – 25 of 145) sorted by relevance

123456

/external/jetty/src/java/org/eclipse/jetty/security/authentication/
DLoginCallbackImpl.java40 private Object credential; field in LoginCallbackImpl
49 public LoginCallbackImpl (Subject subject, String userName, Object credential) in LoginCallbackImpl() argument
53 this.credential = credential; in LoginCallbackImpl()
68 return credential; in getCredential()
103 if (credential != null) in clearPassword()
105 credential = null; in clearPassword()
DClientCertAuthenticator.java124 final char[] credential = B64Code.encode(cert.getSignature()); in validateRequest() local
126 UserIdentity user = login(username, credential, req); in validateRequest()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DRecordingOkAuthenticator.java28 public final String credential; field in RecordingOkAuthenticator
30 public RecordingOkAuthenticator(String credential) { in RecordingOkAuthenticator() argument
31 this.credential = credential; in RecordingOkAuthenticator()
48 .addHeader("Authorization", credential) in authenticate()
56 .addHeader("Proxy-Authorization", credential) in authenticateProxy()
/external/jetty/src/java/org/eclipse/jetty/security/
DMappedLoginService.java165 …Credential credential = (info instanceof Credential)?(Credential)info:Credential.getCredential(inf… in putUser() local
167 Principal userPrincipal = new KnownUser(userName,credential); in putUser()
170 subject.getPrivateCredentials().add(credential); in putUser()
186 public synchronized UserIdentity putUser(String userName, Credential credential, String[] roles) in putUser() argument
188 Principal userPrincipal = new KnownUser(userName,credential); in putUser()
191 subject.getPrivateCredentials().add(credential); in putUser()
308 public KnownUser(String name,Credential credential) in KnownUser() argument
311 _credential=credential; in KnownUser()
DPropertyUserStore.java159 Credential credential = Credential.getCredential(credentials); in loadUsers() local
161 Principal userPrincipal = new KnownUser(username,credential); in loadUsers()
164 subject.getPrivateCredentials().add(credential); in loadUsers()
177 notifyUpdate(username,credential,roleArray); in loadUsers()
308 private void notifyUpdate(String username, Credential credential, String[] roleArray) in notifyUpdate() argument
314 i.next().update(username,credential,roleArray); in notifyUpdate()
352 public void update(String username, Credential credential, String[] roleArray); in update() argument
DHashLoginService.java166 public void update(String userName, Credential credential, String[] roleArray) in update() argument
170 putUser(userName,credential,roleArray); in update()
/external/jetty/src/java/org/eclipse/jetty/util/security/
DCredential.java71 public static Credential getCredential(String credential) in getCredential() argument
73 if (credential.startsWith(Crypt.__TYPE)) return new Crypt(credential); in getCredential()
74 if (credential.startsWith(MD5.__TYPE)) return new MD5(credential); in getCredential()
76 return new Password(credential); in getCredential()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DAuthenticatorAdapter.java50 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword())); in authenticate() local
52 .header("Authorization", credential) in authenticate()
74 String credential = Credentials.basic(auth.getUserName(), new String(auth.getPassword())); in authenticateProxy() local
76 .header("Proxy-Authorization", credential) in authenticateProxy()
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-HS2034 network block or credential. If a credential is picked (based on ANQP
40 whenever needed based on ANQP information and the credential.
48 will internally determine which network or credential is going to be
104 # credential block
106 # Each credential used for automatic network selection is configured as a set
110 # credential fields:
112 # temporary: Whether this credential is temporary and not to be saved
119 # network (based on either an enabled network block or a credential)
194 # points support authentication with this credential. This is an
197 # pre-configured with the credential since the NAI Realm information
[all …]
DREADME-WPS49 an Enrollee to enroll new network credential or as a Registrar to
218 processing the credential attributes and updating wpa_supplicant
DChangeLog355 * added a new cred block parameter 'temporary' to allow credential
475 - credential configuration and automatic network selections based on
476 credential match with ANQP information
497 credential for P2P use cases
/external/ipsec-tools/src/racoon/doc/
DREADME.gssapi14 its credential, where fqdn is the hostname on the interface that
20 mechanism above. If a credential other than GSS_C_NO_CREDENTIAL
22 credential cache if it its principal matches the desired credential.
24 it in a memory-based credential cache, part of the gss credential
34 credential that racoon will try to acquire. The default value
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
DAuthenticate.java34 String credential = Credentials.basic("jesse", "password1"); in run()
36 .header("Authorization", credential) in run()
/external/google-breakpad/
DREADME33 You will be prompted for credential and a description.
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DCallTest.java324 String credential = Credentials.basic("jesse", "secret"); in postBodyRetransmittedAfterAuthorizationFail() local
325 client.setAuthenticator(new RecordingOkAuthenticator(credential)); in postBodyRetransmittedAfterAuthorizationFail()
338 assertEquals(credential, recordedRequest2.getHeader("Authorization")); in postBodyRetransmittedAfterAuthorizationFail()
347 String credential = Credentials.basic("jesse", "secret"); in attemptAuthorization20Times() local
348 client.setAuthenticator(new RecordingOkAuthenticator(credential)); in attemptAuthorization20Times()
361 String credential = Credentials.basic("jesse", "secret"); in doesNotAttemptAuthorization21Times() local
362 client.setAuthenticator(new RecordingOkAuthenticator(credential)); in doesNotAttemptAuthorization21Times()
/external/libcap-ng/libcap-ng-0.7/
DChangeLog50 - Add credential printout and other improvements to captest
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
DURLConnectionTest.java1422 String credential = Credentials.basic("jesse", "secret");
1423 client.client().setAuthenticator(new RecordingOkAuthenticator(credential));
1440 assertEquals(credential, recordedRequest2.getHeader("Authorization"));
2803 String credential = Credentials.basic("jesse", "peanutbutter");
2804 RecordingOkAuthenticator authenticator = new RecordingOkAuthenticator(credential);
2809 assertEquals(credential, server.takeRequest().getHeader("Authorization"));
2863 String credential = Credentials.basic("jesse", "peanutbutter");
2864 client.client().setAuthenticator(new RecordingOkAuthenticator(credential));
2875 String credential = Credentials.basic("jesse", "peanutbutter");
2876 client.client().setAuthenticator(new RecordingOkAuthenticator(credential));
/external/wpa_supplicant_8/hostapd/
DREADME-WPS260 The internal credential generation can be disabled with
338 credential.
/external/libnl/
DChangeLog138 o Add support for credential passing over netlink sockets (API BREAK)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/selinux/policycoreutils/po/
Dcs.po2543 "Allow gssd to list tmp directories and read the kerberos credential cache."
Dsi_LK.po2539 "Allow gssd to list tmp directories and read the kerberos credential cache."
Dlo.po2539 "Allow gssd to list tmp directories and read the kerberos credential cache."
Dtl.po2539 "Allow gssd to list tmp directories and read the kerberos credential cache."
Dms_MY.po2539 "Allow gssd to list tmp directories and read the kerberos credential cache."

123456