HomeSort by relevance Sort by last modified time
    Searched full:credential (Results 1 - 25 of 223) sorted by null

1 2 3 4 5 6 7 8 9

  /external/okhttp/src/test/java/com/squareup/okhttp/internal/
RecordingOkAuthenticator.java 27 public final Credential credential; field in class:RecordingOkAuthenticator
29 public RecordingOkAuthenticator(Credential credential) {
30 this.credential = credential;
33 @Override public Credential authenticate(Proxy proxy, URL url, List<Challenge> challenges)
39 return credential;
42 @Override public Credential authenticateProxy(Proxy proxy, URL url, List<Challenge> challenges)
48 return credential;
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
OkAuthenticator.java 31 * Returns a credential that satisfies the authentication challenge made by
39 Credential authenticate(Proxy proxy, URL url, List<Challenge> challenges) throws IOException;
42 * Returns a credential that satisfies the authentication challenge made by
50 Credential authenticateProxy(Proxy proxy, URL url, List<Challenge> challenges) throws IOException;
87 /** An RFC 2617 credential. */
88 public final class Credential {
91 private Credential(String headerValue) {
95 /** Returns an auth credential for the Basic scheme. */
96 public static Credential basic(String userName, String password) {
101 return new Credential("Basic " + encoded)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmpp/
saslplainmechanism.h 49 talk_base::FormatCryptString credential; local
50 credential.Append("\0", 1);
51 credential.Append(user_jid_.node());
52 credential.Append("\0", 1);
53 credential.Append(&password_);
54 el->AddText(Base64EncodeFromArray(credential.GetData(), credential.GetLength()));
saslcookiemechanism.h 70 std::string credential; local
71 credential.append("\0", 1);
72 credential.append(username_);
73 credential.append("\0", 1);
74 credential.append(cookie_);
75 el->AddText(Base64Encode(credential));
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
saslplainmechanism.h 49 talk_base::FormatCryptString credential; local
50 credential.Append("\0", 1);
51 credential.Append(user_jid_.node());
52 credential.Append("\0", 1);
53 credential.Append(&password_);
54 el->AddText(Base64EncodeFromArray(credential.GetData(), credential.GetLength()));
saslcookiemechanism.h 68 std::string credential; local
69 credential.append("\0", 1);
70 credential.append(username_);
71 credential.append("\0", 1);
72 credential.append(cookie_);
73 el->AddText(Base64Encode(credential));
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
MediaDrmCredentialManager.java 18 * Callback interface for getting notified from credential reset.
22 * This method will be called when credential reset attempt is done.
  /external/chromium_org/third_party/WebKit/Source/platform/mediastream/
RTCConfiguration.h 44 static PassRefPtr<RTCIceServer> create(const KURL& uri, const String& username, const String& credential)
46 return adoptRef(new RTCIceServer(uri, username, credential));
51 const String& credential() { return m_credential; } function in class:WebCore::FINAL
54 RTCIceServer(const KURL& uri, const String& username, const String& credential)
57 , m_credential(credential)
  /packages/apps/CertInstaller/res/values/
strings.xml 29 <!-- Title of dialog to name a credential -->
31 <!-- Description for the credential name input box -->
33 <!-- Title of the credential info -->
34 <!-- Description for the credential password input box -->
53 <string name="unable_to_save_cert">Couldn\'t save the certificate. The credential storage isn\'t enabled or properly initialized.</string>
59 <string name="cert_is_added"><xliff:g id="credential">%s</xliff:g> is installed.</string>
78 <!-- Label for spinner that shows the possible usage for a credential. Shown when user is
79 installing a credential [CHAR LIMIT=40] -->
80 <string name="credential_usage_label">Credential use:</string>
82 <!-- Usage type for a credential that the user is installing. The label will restrict th
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AccountManager.java 13 * @param realm - the realm that is being challenged for which a credential should be
SecureAccountManager.java 12 * @param realm - the realm that is being challenged for which a credential should be
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 31 import static com.squareup.okhttp.OkAuthenticator.Credential;
39 @Override public Credential authenticate(
50 return Credential.basic(auth.getUserName(), new String(auth.getPassword()));
56 @Override public Credential authenticateProxy(
69 return Credential.basic(auth.getUserName(), new String(auth.getPassword()));
109 Credential credential = responseHeaders.getResponseCode() == HTTP_PROXY_AUTH local
112 if (credential == null) {
116 successorRequestHeaders.set(requestField, credential.getHeaderValue());
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-auth-challenge.html 16 <li>When dialog pops up again, enter fake credential and press Ok button: username:"qqqq", password:"qqqq"</li>
17 <li>When dialog pops up agian, enter real credential and press Ok button: username:"aaaa", password:"aaaa"</li>
  /external/ipsec-tools/src/racoon/doc/
README.gssapi 14 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/smack/src/org/apache/harmony/javax/security/auth/
AuthPermission.java 42 * refreshCredential invoke the refresh method on a credential of a
43 * refreshable credential class.
44 * destroyCredential invoke the destroy method on a credential of a
45 * destroyable credential class.
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
KeyStoreLoginModuleTest.java 97 assertFalse("Should get at least one private credential", subjects
100 assertFalse("Should get at least one public credential", subjects2
165 assertFalse("Should get at least one private credential", subjects
168 assertFalse("Should get at least one public credential", subjects2
178 assertTrue("Private credential should be cleared", subjects.isEmpty());
180 assertTrue("Public credential should be cleared", subjects2.isEmpty());
  /external/wpa_supplicant_8/src/wps/
wps_attr_process.c 87 wpa_printf(MSG_DEBUG, "WPS: Credential did not include "
102 wpa_printf(MSG_DEBUG, "WPS: Credential did not include SSID");
125 wpa_printf(MSG_DEBUG, "WPS: Credential did not include "
142 wpa_printf(MSG_DEBUG, "WPS: Credential did not include "
172 wpa_printf(MSG_DEBUG, "WPS: Credential did not include "
198 wpa_printf(MSG_DEBUG, "WPS: Credential did not include "
303 wpa_printf(MSG_DEBUG, "WPS: Process Credential");
  /external/chromium_org/net/spdy/
spdy_framer_test.cc 238 LOG(FATAL) << "Unexpected CREDENTIAL Frame";
438 LOG(INFO) << "Error parsing credential data.";
672 0, // credential slot
701 0, // credential slot
768 0, // credential slot
885 const char kDescription[] = "CREDENTIAL frame";
920 SpdyCredential credential; local
974 SpdyCredential credential; local
980 &credential)); local
986 &credential)); local
3615 SpdyCredential credential; local
3642 SpdyCredential credential; local
3673 SpdyCredential credential; local
3693 SpdyCredential credential; local
3715 SpdyCredential credential; local
3738 SpdyCredential credential; local
4368 SpdyCredential credential; local
    [all...]
  /packages/apps/CertInstaller/res/values-en-rGB/
strings.xml 38 <string name="unable_to_save_cert" msgid="9178604087335389686">"Couldn\'t save the certificate. The credential storage isn\'t enabled or properly initialised."</string>
42 <string name="cert_is_added" msgid="6996557598167000500">"<xliff:g id="CREDENTIAL">%s</xliff:g> is installed."</string>
51 <string name="credential_usage_label" msgid="1513892208033156805">"Credential use:"</string>
  /packages/apps/CertInstaller/res/values-en-rIN/
strings.xml 38 <string name="unable_to_save_cert" msgid="9178604087335389686">"Couldn\'t save the certificate. The credential storage isn\'t enabled or properly initialised."</string>
42 <string name="cert_is_added" msgid="6996557598167000500">"<xliff:g id="CREDENTIAL">%s</xliff:g> is installed."</string>
51 <string name="credential_usage_label" msgid="1513892208033156805">"Credential use:"</string>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
auth_des.h 43 /* A credential */
73 adv_winverf is the credential window + 1.
88 /* Map a des credential into a unix cred. */
auth_unix.h 56 /* The machine name is part of a credential; it may not exceed 255 bytes */
59 /* gids compose part of a credential; there may not be more than 16 of them */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
auth_des.h 43 /* A credential */
73 adv_winverf is the credential window + 1.
88 /* Map a des credential into a unix cred. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
auth_des.h 43 /* A credential */
73 adv_winverf is the credential window + 1.
88 /* Map a des credential into a unix cred. */
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebRTCConfiguration.cpp 71 WebString WebRTCICEServer::credential() const function in class:blink::WebRTCICEServer
74 return m_private->credential();

Completed in 963 milliseconds

1 2 3 4 5 6 7 8 9