/external/wpa_supplicant_8/hs20/server/ |
D | spp_server.c | 48 const char *realm, const char *session_id, 50 static char * db_get_osu_config_val(struct hs20_svc *ctx, const char *realm, 53 const char *realm, int use_dmacc); 57 const char *user, const char *realm, in db_add_session() argument 70 sessionid, user ? user : "", realm ? realm : "", in db_add_session() 87 const char *realm, const char *sessionid, in db_update_session_password() argument 94 pw, sessionid, user, realm); in db_update_session_password() 108 const char *realm, in db_update_session_machine_managed() argument 115 pw_mm ? "1" : "0", sessionid, user, realm); in db_update_session_machine_managed() 129 const char *realm, const char *sessionid, in db_add_session_pps() argument [all …]
|
D | sql-example.txt | 1 INSERT INTO osu_config(realm,field,value) VALUES('example.com','fqdn','example.com'); 2 INSERT INTO osu_config(realm,field,value) VALUES('example.com','friendly_name','Example Operator'); 3 …NTO osu_config(realm,field,value) VALUES('example.com','spp_http_auth_url','https://subscription-s… 4 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_url','https://osu-s… 5 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_fingerprint','5b393… 6 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_url','https://o… 7 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_fingerprint','5… 8 INSERT INTO osu_config(realm,field,value) VALUES('example.com','free_account','free'); 9 …T INTO osu_config(realm,field,value) VALUES('example.com','policy_url','https://subscription-serve… 10 INSERT INTO osu_config(realm,field,value) VALUES('example.com','remediation_url','https://subscript… [all …]
|
/external/v8/test/mjsunit/harmony/ |
D | proxies-cross-realm-exception.js | 8 var realm = Realm.create(); variable 12 Realm.eval(realm, "3; Reflect.getPrototypeOf(Realm.global(0))")); 13 assertFalse(Realm.eval(realm, "3; Realm.global(0) instanceof Object")); 17 Realm.eval(realm, "1; Reflect.getPrototypeOf(Realm.global(0))")); 18 assertFalse(Realm.eval(realm, "1; Realm.global(0) instanceof Object")); 21 var test = Realm.eval(realm, 32 Realm.eval(realm, "2; Reflect.getPrototypeOf(Realm.global(0))")); 33 assertFalse(Realm.eval(realm, "2; Realm.global(0) instanceof Object")); 41 Realm.eval(realm, "4; Reflect.getPrototypeOf(Realm.global(0))")); 42 assertFalse(Realm.eval(realm, "4; Realm.global(0) instanceof Object")); [all …]
|
/external/apache-http/src/org/apache/http/auth/ |
D | AuthScope.java | 86 private final String realm; field in AuthScope 112 final String realm, final String scheme) in AuthScope() argument 116 this.realm = (realm == null) ? ANY_REALM: realm; in AuthScope() 134 public AuthScope(final String host, int port, final String realm) { in AuthScope() argument 135 this(host, port, realm, ANY_SCHEME); in AuthScope() 163 this.realm = authscope.getRealm(); in AuthScope() 185 return this.realm; in getRealm() 211 if (LangUtils.equals(this.realm, that.realm)) { in match() 214 if (this.realm != ANY_REALM && that.realm != ANY_REALM) { in match() 253 && LangUtils.equals(this.realm, that.realm) in equals() [all …]
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Challenge.java | 23 private final String realm; field in Challenge 25 public Challenge(String scheme, String realm) { in Challenge() argument 27 this.realm = realm; in Challenge() 37 return realm; in getRealm() 43 && equal(realm, ((Challenge) o).realm); in equals() 48 result = 31 * result + (realm != null ? realm.hashCode() : 0); in hashCode() 54 return scheme + " realm=\"" + realm + "\""; in toString()
|
/external/wpa_supplicant_8/hs20/server/www/ |
D | spp.php | 16 $realm = $_GET["realm"]; variable 17 $realm = PREG_REPLACE("/[^0-9a-zA-Z\.\-]/i", '', $realm); variable 54 "WHERE identity='$user' AND realm='$realm'")->fetch(); 57 "WHERE osu_user='$user' AND realm='$realm'")->fetch(); 70 $A1 = md5($user . ':' . $realm . ':' . $pw); 86 header('WWW-Authenticate: Digest realm="'.$realm. 87 '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"'); 98 putenv("HS20REALM=$realm"); 108 header('WWW-Authenticate: Digest realm="'.$realm. 109 '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');
|
D | est.php | 6 $realm = $params[1]; variable 41 "WHERE user='$user' AND realm='$realm'"; 44 error_log("EST: Session not found for user=$user realm=$realm"); 49 error_log("EST: Session fetch failed for user=$user realm=$realm"); 56 error_log("EST: Unexpected operation $oper for user=$user realm=$realm"); 61 error_log("EST: Empty password for user=$user realm=$realm"); 65 $A1 = md5($user . ':' . $realm . ':' . $pw); 70 error_log("EST: Incorrect authentication response for user=$user realm=$realm"); 77 $fname = "$osu_root/est/$realm-cacerts.pkcs7"; 79 error_log("EST: cacerts - unknown realm $realm"); [all …]
|
D | add-free.php | 24 $realm = $row['realm']; variable 26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fe… 33 $row = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch(); 39 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', machine_managed='… 44 "VALUES ('$user', '$realm', '$id', " .
|
D | add-mo.php | 32 $realm = $row['realm']; variable 34 $userrow = $db->query("SELECT identity FROM users WHERE identity='$user' AND realm='$realm'")->fetc… 45 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', type='password' W… 50 "VALUES ('$user', '$realm', '$id', " .
|
/external/curl/tests/data/ |
D | test2026 | 22 WWW-Authenticate: Digest realm="testrealm", nonce="1" 23 WWW-Authenticate: Basic realm="testrealm" 33 WWW-Authenticate: Basic realm="testrealm" 34 WWW-Authenticate: Digest realm="testrealm", nonce="2" 55 WWW-Authenticate: Digest realm="testrealm", nonce="3" 56 WWW-Authenticate: Basic realm="testrealm" 66 WWW-Authenticate: Basic realm="testrealm" 67 WWW-Authenticate: Digest realm="testrealm", nonce="4" 78 WWW-Authenticate: Digest realm="testrealm", nonce="5" 79 WWW-Authenticate: Basic realm="testrealm" [all …]
|
D | test2024 | 22 WWW-Authenticate: Digest realm="testrealm", nonce="1" 23 WWW-Authenticate: Basic realm="testrealm" 44 WWW-Authenticate: Digest realm="testrealm", nonce="2" 45 WWW-Authenticate: Basic realm="testrealm" 56 WWW-Authenticate: Digest realm="testrealm", nonce="3" 57 WWW-Authenticate: Basic realm="testrealm" 77 WWW-Authenticate: Digest realm="testrealm", nonce="1" 78 WWW-Authenticate: Basic realm="testrealm" 91 WWW-Authenticate: Digest realm="testrealm", nonce="2" 92 WWW-Authenticate: Basic realm="testrealm" [all …]
|
D | test2027 | 29 WWW-Authenticate: Digest realm="testrealm", nonce="1" 39 WWW-Authenticate: Digest realm="testrealm", nonce="2" 50 WWW-Authenticate: Digest realm="testrealm", nonce="3" 70 WWW-Authenticate: Digest realm="testrealm", nonce="4" 80 WWW-Authenticate: Digest realm="testrealm", nonce="5" 91 WWW-Authenticate: Digest realm="testrealm", nonce="6" 101 WWW-Authenticate: Digest realm="testrealm", nonce="7" 121 WWW-Authenticate: Digest realm="testrealm", nonce="1" 127 WWW-Authenticate: Digest realm="testrealm", nonce="2" 140 WWW-Authenticate: Digest realm="testrealm", nonce="4" [all …]
|
D | test1075 | 19 WWW-Authenticate: Blackmagic realm="gimme all yer s3cr3ts" 20 WWW-Authenticate: Basic realm="gimme all yer s3cr3ts" 21 WWW-Authenticate: X-bogus-auth realm="gimme all yer s3cr3ts" 29 WWW-Authenticate: Blackmagic realm="gimme all yer s3cr3ts" 30 WWW-Authenticate: Basic realm="gimme all yer s3cr3ts" 31 WWW-Authenticate: X-bogus-auth realm="gimme all yer s3cr3ts" 37 WWW-Authenticate: Blackmagic realm="gimme all yer s3cr3ts" 38 WWW-Authenticate: Basic realm="gimme all yer s3cr3ts" 39 WWW-Authenticate: X-bogus-auth realm="gimme all yer s3cr3ts"
|
D | test1095 | 14 WWW-Authenticate: Digest realm="test \"this\" realm!!", nonce="1053604145" 35 WWW-Authenticate: Digest realm="test \"this\" realm!!", nonce="1053604145" 59 HTTP with Digest and realm with quoted quotes 78 Authorization: Digest username="testuser", realm="test \"this\" realm!!", nonce="1053604145", uri="…
|
D | test2030 | 35 WWW-Authenticate: Digest realm="testrealm", nonce="1" 55 WWW-Authenticate: Digest realm="testrealm", nonce="2" 68 WWW-Authenticate: Digest realm="testrealm", nonce="3" 88 WWW-Authenticate: Digest realm="testrealm", nonce="4" 110 WWW-Authenticate: Digest realm="testrealm", nonce="5" 121 WWW-Authenticate: Digest realm="testrealm", nonce="6" 133 WWW-Authenticate: Digest realm="testrealm", nonce="7" 144 WWW-Authenticate: Digest realm="testrealm", nonce="8" 170 WWW-Authenticate: Digest realm="testrealm", nonce="2" 191 WWW-Authenticate: Digest realm="testrealm", nonce="5" [all …]
|
D | test1412 | 19 WWW-Authenticate: Blackmagic realm="gimme all yer s3cr3ts" 20 WWW-Authenticate: Basic realm="gimme all yer s3cr3ts" 21 WWW-Authenticate: Digest realm="gimme all yer s3cr3ts", nonce="11223344" 54 WWW-Authenticate: Blackmagic realm="gimme all yer s3cr3ts" 55 WWW-Authenticate: Basic realm="gimme all yer s3cr3ts" 56 WWW-Authenticate: Digest realm="gimme all yer s3cr3ts", nonce="11223344" 106 Authorization: Digest username="testuser", realm="gimme all yer s3cr3ts", nonce="11223344", uri="/1… 112 Authorization: Digest username="testuser", realm="gimme all yer s3cr3ts", nonce="11223344", uri="/1…
|
D | test2028 | 23 WWW-Authenticate: Digest realm="testrealm", nonce="1" 33 WWW-Authenticate: Digest realm="testrealm", nonce="2" 46 WWW-Authenticate: Digest realm="testrealm", nonce="3" 76 WWW-Authenticate: Digest realm="testrealm", nonce="4" 88 WWW-Authenticate: Digest realm="testrealm", nonce="5" 99 WWW-Authenticate: Digest realm="testrealm", nonce="6" 121 WWW-Authenticate: Digest realm="testrealm", nonce="7" 132 WWW-Authenticate: Digest realm="testrealm", nonce="8" 163 WWW-Authenticate: Digest realm="testrealm", nonce="1" 169 WWW-Authenticate: Digest realm="testrealm", nonce="2" [all …]
|
/external/iproute2/misc/ |
D | rtacct.c | 158 int realm; in dump_abs_db() local 182 for (realm=0; realm<256; realm++) { in dump_abs_db() 187 if (!(rmap[realm>>5] & (1<<(realm&0x1f)))) in dump_abs_db() 190 val = &kern_db->val[realm*4]; in dump_abs_db() 191 rate = &kern_db->rate[realm*4]; in dump_abs_db() 201 memcpy(&hist_db->val[realm*4], val, sizeof(*val)*4); in dump_abs_db() 207 fprintf(fp, "%-10s", rtnl_rtrealm_n2a(realm, b1, sizeof(b1))); in dump_abs_db() 220 int k, realm; in dump_incr_db() local 243 for (realm=0; realm<256; realm++) { in dump_incr_db() 250 if (!(rmap[realm>>5] & (1<<(realm&0x1f)))) in dump_incr_db() [all …]
|
/external/ppp/pppd/plugins/radius/ |
D | radrealms.c | 45 char *realm; in lookup_realm() local 56 realm = strrchr(user, '@'); in lookup_realm() 58 if (realm) { in lookup_realm() 59 info("Looking up servers for realm '%s'", realm); in lookup_realm() 63 if (realm) { in lookup_realm() 64 if (*(++realm) == '\0') { in lookup_realm() 65 realm = NULL; in lookup_realm() 107 if ((realm != NULL && strcmp(p, realm) == 0) || in lookup_realm() 108 (realm == NULL && strcmp(p, "DEFAULT") == 0) ) { in lookup_realm()
|
/external/chromium-trace/catapult/third_party/Paste/paste/auth/ |
D | digest.py | 70 def digest_password(realm, username, password): argument 72 content = "%s:%s:%s" % (username, realm, password) 79 def __init__(self, realm, authfunc): argument 82 self.realm = realm 97 parts = {'realm': self.realm, 'qop': 'auth', 149 realm = amap['realm'] 152 assert realm == self.realm 161 ha1 = self.authfunc(environ, realm, username) 215 def __init__(self, application, realm, authfunc): argument 216 self.authenticate = AuthDigestAuthenticator(realm, authfunc) [all …]
|
D | basic.py | 32 def __init__(self, realm, authfunc): argument 33 self.realm = realm 37 head = WWW_AUTHENTICATE.tuples('Basic realm="%s"' % self.realm) 82 def __init__(self, application, realm, authfunc): argument 84 self.authenticate = AuthBasicAuthenticator(realm, authfunc) 101 def make_basic(app, global_conf, realm, authfunc, **kw): argument 117 return AuthBasicHandler(app, realm, authfunc)
|
/external/ppp/pppd/plugins/radius/etc/ |
D | realms | 3 # Handle realm @netservers.co.uk on an internal RADIUS server 4 # (note the server must be told to strip the realm) 9 # users in realm @example.com are handled by separate servers 14 # the DEFAULT realm matches users that do not supply a realm 22 # DEFAULT realm match, above.
|
/external/chromium-trace/catapult/third_party/Paste/tests/test_auth/ |
D | test_auth_digest.py | 21 realm = "tag:clarkevans.com,2005:testing" variable 23 def backwords(environ, realm, username): argument 28 return digest_password(realm, username, password) 30 application = AuthDigestHandler(application,realm,backwords) 68 def authfetch(username,password,path="/",realm=realm): argument 74 auth.add_password(realm,uri,username,password)
|
/external/libnl/include/netlink/route/ |
D | rtnl.h | 35 #define RTNL_REALM_FROM(realm) ((realm) >> 16) argument 40 #define RTNL_REALM_TO(realm) ((realm) & RTNL_REALM_MASK) argument
|
/external/dhcpcd-6.8.2/ |
D | auth.c | 87 free(state->token->realm); in dhcp_auth_reset() 93 free(state->reconf->realm); in dhcp_auth_reset() 113 const uint8_t *d, *realm; in dhcp_auth_validate() local 174 realm = NULL; in dhcp_auth_validate() 199 realm = d; in dhcp_auth_validate() 232 state->reconf->realm = NULL; in dhcp_auth_validate() 278 memcmp(t->realm, realm, t->realm_len) == 0)) in dhcp_auth_validate() 299 memcmp(state->token->realm, t->realm, t->realm_len))) in dhcp_auth_validate() 363 state->token->realm = malloc(t->realm_len); in dhcp_auth_validate() 364 if (state->token->realm) { in dhcp_auth_validate() [all …]
|