HomeSort by relevance Sort by last modified time
    Searched refs:realm (Results 76 - 100 of 229) sorted by null

1 2 34 5 6 7 8 910

  /external/chromium_org/net/http/
http_auth_handler_factory_unittest.cc 111 "Basic realm=\"FooBar\"",
119 EXPECT_STREQ("FooBar", handler->realm().c_str());
127 "UNSUPPORTED realm=\"FooBar\"",
138 "Digest realm=\"FooBar\", nonce=\"xyz\"",
146 EXPECT_STREQ("FooBar", handler->realm().c_str());
162 EXPECT_STREQ("", handler->realm().c_str());
179 EXPECT_STREQ("", handler->realm().c_str());
http_auth_controller.cc 284 handler_->realm(),
296 // If the server changes the authentication realm in a
298 // previous realm. If the server rejects a preemptive
300 // realm, we keep the cached credentials.
399 // to know about it. If an entry for (origin, handler->realm()) already
416 http_auth_cache_->Add(auth_origin_, handler_->realm(),
451 http_auth_cache_->Remove(auth_origin_, handler_->realm(),
477 // Check the auth cache for a realm entry.
479 http_auth_cache_->Lookup(auth_origin_, handler_->realm(),
514 auth_info_->realm = handler_->realm()
    [all...]
http_auth_handler_digest.cc 38 // | ?, md5 | user:realm:password |
40 // | md5-sess | MD5(user:realm:password):nonce:cnonce |
113 // there is a rejection the realm hasn't changed.
119 // Try to find the "stale" value, and also keep track of the realm
126 } else if (LowerCaseEqualsASCII(parameters.name(), "realm")) {
171 // [realm="<realm-value>"]
180 // Note that according to RFC 2617 (section 1.2) the realm is required.
185 // send the realm (See http://crbug.com/20984 for an instance where a
186 // webserver was not sending the realm with a BASIC challenge)
227 std::string realm; local
    [all...]
  /external/chromium/net/http/
http_auth_controller.cc 287 handler_->realm(),
299 // If the server changes the authentication realm in a
301 // previous realm. If the server rejects a preemptive
303 // realm, we keep the cached credentials.
386 // to know about it. If an entry for (origin, handler->realm()) already
403 http_auth_cache_->Add(auth_origin_, handler_->realm(),
436 http_auth_cache_->Remove(auth_origin_, handler_->realm(),
461 // Check the auth cache for a realm entry.
463 http_auth_cache_->Lookup(auth_origin_, handler_->realm(),
500 // TODO(eroman): decode realm according to RFC 2047
    [all...]
http_auth_handler_digest.cc 37 // | ?, md5 | user:realm:password |
39 // | md5-sess | MD5(user:realm:password):nonce:cnonce |
112 // there is a rejection the realm hasn't changed.
117 std::string realm; local
119 // Try to find the "stale" value, and also keep track of the realm
125 } else if (LowerCaseEqualsASCII(parameters.name(), "realm")) {
126 realm = parameters.value();
129 return (realm_ != realm) ?
175 // [realm="<realm-value>"
    [all...]
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-proto.js 28 var realmA = Realm.current();
29 var realmB = Realm.create();
34 assertSame(this, Realm.global(realmA));
35 assertSame(Realm.eval(realmB, "this"), Realm.global(realmB));
36 assertFalse(this === Realm.global(realmB));
38 // The global object is not accessible cross-realm.
40 Realm.shared = this;
41 assertThrows("Realm.eval(realmB, 'x')");
42 assertSame(undefined, Realm.eval(realmB, "this.x"))
    [all...]
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
NullContentsClient.java 70 public void onReceivedHttpAuthRequest(AwHttpAuthHandler handler, String host, String realm) {
80 public void onReceivedLoginRequest(String realm, String account, String args) {
  /external/chromium_org/components/autofill/content/renderer/
password_generation_manager.cc 120 GURL realm(password_form->signon_realm);
121 if (realm == GURL(GaiaUrls::GetInstance()->gaia_login_form_realm()))
  /external/chromium_org/components/autofill/core/common/
password_form_fill_data_unittest.cc 61 // The preferred realm should be empty since it's the same as the realm of
155 // The preferred realm should match the original signon realm from the
160 // The realm of the exact match should be empty.
163 EXPECT_EQ(iter->second.realm, "");
165 // The realm of the public suffix match should be set to the original signon
166 // realm so the user can see where the result came from.
168 EXPECT_EQ(iter->second.realm, public_suffix_match.original_signon_realm);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 122 * name and realm.
129 // realm = "realm" "=" realm-value
130 // realm-value = quoted-string
145 // TODO: This currently only handles schemes with a 'realm' parameter;
149 if (!value.regionMatches(true, pos, "realm=\"", 0, "realm=\"".length())) {
153 pos += "realm=\"".length();
156 String realm = value.substring(realmStart, pos) local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2.py 118 >>> add("Some Realm", "http://example.com/", "joe", "password")
119 >>> add("Some Realm", "http://example.com/ni", "ni", "ni")
125 >>> add("Some Realm", "http://c.example.com:3128", "3", "c")
126 >>> add("Some Realm", "d.example.com", "4", "d")
127 >>> add("Some Realm", "e.example.com:3128", "5", "e")
129 >>> mgr.find_user_password("Some Realm", "example.com")
131 >>> mgr.find_user_password("Some Realm", "http://example.com")
133 >>> mgr.find_user_password("Some Realm", "http://example.com/")
135 >>> mgr.find_user_password("Some Realm", "http://example.com/spam")
137 >>> mgr.find_user_password("Some Realm", "http://example.com/spam/spam"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2.py 118 >>> add("Some Realm", "http://example.com/", "joe", "password")
119 >>> add("Some Realm", "http://example.com/ni", "ni", "ni")
125 >>> add("Some Realm", "http://c.example.com:3128", "3", "c")
126 >>> add("Some Realm", "d.example.com", "4", "d")
127 >>> add("Some Realm", "e.example.com:3128", "5", "e")
129 >>> mgr.find_user_password("Some Realm", "example.com")
131 >>> mgr.find_user_password("Some Realm", "http://example.com")
133 >>> mgr.find_user_password("Some Realm", "http://example.com/")
135 >>> mgr.find_user_password("Some Realm", "http://example.com/spam")
137 >>> mgr.find_user_password("Some Realm", "http://example.com/spam/spam"
    [all...]
  /external/chromium/chrome/browser/password_manager/
native_backend_kwallet_x.h 96 // Note that |realm| is only used for generating a useful warning message.
97 static bool CheckSerializedValue(const GArray* byte_array, const char* realm);
  /external/chromium_org/android_webview/native/
aw_http_auth_handler.cc 25 realm_(auth_info->realm) {
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver_main.cc 44 virtual bool GetKey(const std::string& username, const std::string& realm,
47 // Generate HA1 via "echo -n "<username>:<realm>:<password>" | md5sum"
63 std::cerr << "usage: turnserver int-addr ext-ip realm auth-file"
  /external/chromium_org/third_party/openssl/openssl/crypto/krb5/
krb5_asn.h 107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st
196 ** crealm[1] Realm,
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
krb5_asn.h 107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st
196 ** crealm[1] Realm,
  /external/openssl/crypto/krb5/
krb5_asn.h 107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st
196 ** crealm[1] Realm,
  /external/openssl/include/openssl/
krb5_asn.h 107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st
196 ** crealm[1] Realm,
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 54 public static final String REALM = ParameterNames.REALM;
110 || name.equalsIgnoreCase(ParameterNames.REALM)
184 * Sets the Realm of the WWWAuthenicateHeader to the <var>realm</var>
185 * parameter value. Realm strings MUST be globally unique. It is RECOMMENDED
186 * that a realm string contain a hostname or domain name. Realm strings
190 * @param realm
191 * the new Realm String of this WWWAuthenicateHeader
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib.py 686 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
690 scheme, realm = match.groups()
696 return getattr(self,name)(url, realm)
698 return getattr(self,name)(url, realm, data)
708 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
712 scheme, realm = match.groups()
718 return getattr(self,name)(url, realm)
720 return getattr(self,name)(url, realm, data)
722 def retry_proxy_http_basic_auth(self, url, realm, data=None):
730 user, passwd = self.get_user_passwd(proxyhost, realm, i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib.py 686 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
690 scheme, realm = match.groups()
696 return getattr(self,name)(url, realm)
698 return getattr(self,name)(url, realm, data)
708 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
712 scheme, realm = match.groups()
718 return getattr(self,name)(url, realm)
720 return getattr(self,name)(url, realm, data)
722 def retry_proxy_http_basic_auth(self, url, realm, data=None):
730 user, passwd = self.get_user_passwd(proxyhost, realm, i
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar 
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 309 * the given realm plus all the parameters whose names begin with "oauth_".
311 public String getAuthorizationHeader(String realm) throws IOException {
313 if (realm != null) {
314 into.append(" realm=\"").append(OAuth.percentEncode(realm)).append('"');
357 * header. The realm is included as a parameter. If the given header doesn't

Completed in 700 milliseconds

1 2 34 5 6 7 8 910