Searched defs:realm (Results 1 - 25 of 66) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DAccountManager.java13 * @param realm - the realm that is being challenged for which a credential should be
18 UserCredentials getCredentials(ClientTransaction challengedTransaction, String realm); argument
H A DSecureAccountManager.java12 * @param realm - the realm that is being challenged for which a credential should be
17 UserCredentialHash getCredentialHash(ClientTransaction challengedTransaction, String realm); argument
/external/okhttp/src/main/java/libcore/net/http/
H A DChallenge.java24 final String realm; field in class:Challenge
26 Challenge(String scheme, String realm) { argument
28 this.realm = realm;
34 && ((Challenge) o).realm.equals(realm);
38 return scheme.hashCode() + 31 * realm.hashCode();
/external/iproute2/ip/
H A Drtm_map.c98 __u32 realm = 0; local
112 if (*arg && rtnl_rtrealm_a2n(&realm, arg))
114 *realms |= realm;
H A Diprule.c295 __u32 realm; local
297 if (get_rt_realms(&realm, *argv))
299 addattr32(&req.n, sizeof(req), FRA_FLOW, realm);
/external/webkit/Source/WebCore/platform/network/
H A DProtectionSpace.cpp50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme) argument
54 , m_realm(realm.length() ? realm : "")
83 const String& ProtectionSpace::realm() const function in class:WebCore::ProtectionSpace
114 // Ignore realm for proxies
115 if (!a.isProxy() && a.realm() != b.realm())
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DWebProtectionSpace.cpp48 const String& WebProtectionSpace::realm() const function in class:WebKit::WebProtectionSpace
50 return m_coreProtectionSpace.realm();
/external/chromium/net/base/
H A Dauth.h34 std::wstring realm; // the realm provided by the server, if there is one. member in class:net::AuthChallengeInfo
/external/ppp/pppd/plugins/radius/
H A Dradrealms.c6 * allows selection of alternate set of servers based on the user's realm.
44 char *realm; local
55 realm = strrchr(user, '@');
57 if (realm) {
58 info("Looking up servers for realm '%s'", realm);
60 info("Looking up servers for DEFAULT realm");
62 if (realm) {
63 if (*(++realm) == '\0') {
64 realm
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java39 * a port number, a realm name and an authentication scheme name which
61 * The <tt>null</tt> value represents any realm.
71 * Default scope matching any host, port, realm and authentication scheme.
80 /** The realm the credentials apply to. */
81 private final String realm; field in class:AuthScope
90 * <tt>host</tt>, <tt>port</tt>, <tt>realm</tt>, and
99 * @param realm the realm the credentials apply to. May be set
101 * any realm.
107 final String realm, fina
106 AuthScope(final String host, int port, final String realm, final String scheme) argument
129 AuthScope(final String host, int port, final String realm) argument
[all...]
/external/chromium/chrome/browser/importer/
H A Dnss_decryptor.cc168 // For HTTP authentication logins, the URL may contain http realm,
170 // sitename:8080 (realm)
172 std::string realm; local
186 realm = lines[begin].substr(start, end - start);
188 // Don't have http realm. It is the URL that the following passwords
197 if (!realm.empty())
198 form.signon_realm += realm;
269 std::string realm(s2.ColumnString(1));
270 if (!realm.empty()) {
286 if (!realm
[all...]
/external/chromium/net/http/
H A Dhttp_auth_cache.h21 // For each (origin, realm, scheme) triple the cache stores a
25 // - the last auth handler used (contains realm and authentication scheme)
26 // - the list of paths which used this realm
27 // Entries can be looked up by either (origin, realm, scheme) or (origin, path).
42 // Find the realm entry on server |origin| for realm |realm| and
45 // |realm| - case sensitive realm string.
49 const std::string& realm,
120 const std::string realm() const { function in class:net::HttpAuthCache::Entry
[all...]
H A Dhttp_auth_handler.h83 // The realm value that was parsed during Init().
84 const std::string& realm() const { function in class:net::HttpAuthHandler
163 // The realm. Used by "basic" and "digest".
H A Dhttp_auth_handler_basic.cc17 // Note that if a realm was not specified, we will default it to "";
18 // so specifying 'Basic realm=""' is equivalent to 'Basic'.
21 // production of challenge that realm is required.
24 // include a realm (see http://crbug.com/20984.)
40 // Extract the realm (may be missing).
41 std::string realm; local
43 if (LowerCaseEqualsASCII(parameters.name(), "realm"))
44 realm = parameters.value();
50 realm_ = realm;
58 // is for a different realm, the
60 std::string realm; local
[all...]
H A Dhttp_auth_cache.cc68 // Performance: O(n), where n is the number of realm entries.
70 const std::string& realm,
74 // Linear scan through the realm entries.
76 if (it->origin() == origin && it->realm() == realm &&
80 return NULL; // No realm entry found.
83 // Performance: O(n*m), where n is the number of realm entries, m is the number
84 // of path entries per realm. Both n amd m are expected to be small; m is
99 // Linear scan through the realm entries.
112 const std::string& realm,
69 Lookup(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme) argument
111 Add(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge, const string16& username, const string16& password, const std::string& path) argument
199 Remove(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const string16& username, const string16& password) argument
217 UpdateStaleChallenge(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge) argument
[all...]
H A Dhttp_auth_cache_unittest.cc23 const std::string& realm,
27 realm_ = realm;
74 // Test adding and looking-up cache entries (both by realm and by path).
87 cache.Add(origin, realm1_handler->realm(), realm1_handler->auth_scheme(),
88 "Basic realm=Realm1", ASCIIToUTF16("realm1-user"),
95 cache.Add(origin, realm2_handler->realm(), realm2_handler->auth_scheme(),
96 "Basic realm=Realm2", ASCIIToUTF16("realm2-user"),
103 cache.Add(origin, realm3_basic_handler->realm(),
104 realm3_basic_handler->auth_scheme(), "Basic realm=Realm3",
112 cache.Add(origin, realm3_digest_handler->realm(),
22 MockAuthHandler(HttpAuth::Scheme scheme, const std::string& realm, HttpAuth::Target target) argument
[all...]
H A Dhttp_auth_handler_digest.cc37 // | ?, 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
[all...]
/external/webkit/Source/WebCore/platform/network/cf/
H A DAuthenticationCF.cpp178 CFStringRef realm = coreSpace.realm().createCFString(); local
179 CFURLProtectionSpaceRef result = CFURLProtectionSpaceCreate(0, host, coreSpace.port(), serverType, realm, scheme);
181 CFRelease(realm);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar ... util.Map) java.net.URL serverUrl String realm String authScheme java.util.Map info String url ...
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
H A DKrb5LoginModuleTest.java40 // default realm
41 private static final String ENV_REALM = "java.security.krb5.realm";
46 // old value of 'java.security.krb5.realm' system property
47 private String realm; field in class:Krb5LoginModuleTest
63 realm = System.getProperty(ENV_REALM);
92 TestUtils.setSystemProperty(ENV_REALM, realm);
/external/webkit/Source/WebKit/win/
H A DWebURLProtectionSpace.cpp150 /* [in] */ BSTR realm,
169 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
178 /* [in] */ BSTR realm,
199 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
264 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::realm( function in class:WebURLProtectionSpace
267 BString bstring = m_protectionSpace.realm();
146 initWithHost( BSTR host, int port, BSTR protocol, BSTR realm, BSTR authenticationMethod) argument
174 initWithProxyHost( BSTR host, int port, BSTR proxyType, BSTR realm, BSTR authenticationMethod) argument
/external/nist-sip/java/javax/sip/header/
H A DAuthorizationHeader.java28 void setRealm(String realm) throws ParseException; argument
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthMessage.java309 * the given realm plus all the parameters whose names begin with "oauth_".
311 public String getAuthorizationHeader(String realm) throws IOException { argument
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
/external/openssl/crypto/krb5/
H A Dkrb5_asn.h107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st
/external/openssl/include/openssl/
H A Dkrb5_asn.h107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st

Completed in 2530 milliseconds

123