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

1234

/external/wpa_supplicant_8/hs20/server/www/
H A Dsignup.php18 $row = $db->query("SELECT realm FROM sessions WHERE id='$id'")->fetch();
22 $realm = $row['realm']; variable
24 echo "<h3>Sign up for a subscription - $realm</h3>\n";
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
H A Dcert-enroll.php24 $realm = $row['realm']; variable
32 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
33 "VALUES ('', '$realm', '$id', " .
H A Dredirect.php25 $realm = $row['realm']; variable
27 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
28 "VALUES ('$user', '$realm', '$id', " .
H A Dadd-free.php24 $realm = $row['realm']; variable
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
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='1' WHERE rowid=$rowid")) {
43 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
44 "VALUES ('$user', '$realm', '
[all...]
H A Dadd-mo.php32 $realm = $row['realm']; variable
34 $userrow = $db->query("SELECT identity FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
45 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', type='password' WHERE rowid=$rowid")) {
49 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
50 "VALUES ('$user', '$realm', '$id', " .
H A Dspp.php15 if (isset($_GET["realm"])) {
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
[all...]
H A Dusers.php130 echo "<H3>" . $row['identity'] . "@" . $row['realm'] . "</H3>\n";
241 $realm = $row['realm']; variable
254 echo "<th>user<th>realm";
269 $res = $db->query("SELECT rowid,* FROM eventlog WHERE (user='$user' OR user='$osu_user') AND realm='$realm' ORDER BY timestamp DESC LIMIT $limit");
271 $res = $db->query("SELECT rowid,* FROM eventlog WHERE user='$user' AND realm='$realm' ORDER BY timestamp DESC LIMIT $limit");
276 echo "<td>" . $row['realm'] . "\n";
312 echo "<td>" . $row['realm'];
[all...]
H A Dest.php6 $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
[all...]
/external/curl/lib/vauth/
H A Dvauth.c40 * service/host@realm (Not currently used)
42 * service@realm (Not used by Windows SSPI)
48 * realm [in] - The realm.
54 const char *realm)
59 if(host && realm)
60 spn = aprintf("%s/%s@%s", service, host, realm);
63 else if(realm)
64 spn = aprintf("%s@%s", service, realm);
71 const char *realm)
53 Curl_auth_build_spn(const char *service, const char *host, const char *realm) argument
70 Curl_auth_build_spn(const char *service, const char *host, const char *realm) argument
[all...]
/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/iproute2/ip/
H A Drtm_map.c98 __u32 realm = 0; local
112 if (*arg && rtnl_rtrealm_a2n(&realm, arg))
114 *realms |= realm;
/external/libmicrohttpd/src/microhttpd/
H A Dbasicauth.c110 * @param realm the realm presented to the client
117 const char *realm,
121 size_t hlen = strlen(realm) + strlen("Basic realm=\"\"") + 1;
135 "Basic realm=\"%s\"",
136 realm);
116 MHD_queue_basic_auth_fail_response(struct MHD_Connection *connection, const char *realm, struct MHD_Response *response) argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DChallenge.java23 private final String realm; field in class:Challenge
25 public Challenge(String scheme, String realm) { argument
27 this.realm = realm;
37 return realm;
43 && equal(realm, ((Challenge) o).realm);
48 result = 31 * result + (realm != null ? realm.hashCode() : 0);
54 return scheme + " realm
[all...]
/external/libcups/cups/
H A Dmd5passwd.c30 const char *realm, /* I - Realm name */
43 snprintf(line, sizeof(line), "%s:%s:%s", username, realm, passwd);
85 * Then combine A1 (MD5 of username, realm, and password) with the nonce
29 httpMD5(const char *username, const char *realm, const char *passwd, char md5[33]) argument
/external/ppp/pppd/plugins/radius/
H A Dradrealms.c6 * allows selection of alternate set of servers based on the user's realm.
45 char *realm; local
56 realm = strrchr(user, '@');
58 if (realm) {
59 info("Looking up servers for realm '%s'", realm);
61 info("Looking up servers for DEFAULT realm");
63 if (realm) {
64 if (*(++realm) == '\0') {
65 realm
[all...]
/external/webrtc/webrtc/examples/turnserver/
H A Dturnserver_main.cc27 virtual bool GetKey(const std::string& username, const std::string& realm, argument
30 // Generate HA1 via "echo -n "<username>:<realm>:<password>" | md5sum"
46 std::cerr << "usage: turnserver int-addr ext-ip realm auth-file"
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java39 * a port number, a realm name and an authentication scheme name which
66 * The <tt>null</tt> value represents any realm.
76 * Default scope matching any host, port, realm and authentication scheme.
85 /** The realm the credentials apply to. */
86 private final String realm; field in class:AuthScope
95 * <tt>host</tt>, <tt>port</tt>, <tt>realm</tt>, and
104 * @param realm the realm the credentials apply to. May be set
106 * any realm.
112 final String realm, fina
111 AuthScope(final String host, int port, final String realm, final String scheme) argument
134 AuthScope(final String host, int port, final String realm) argument
[all...]
/external/libmicrohttpd/src/examples/
H A Ddigest_auth_example.c46 const char *realm = "test@example.com"; local
55 ret = MHD_queue_auth_fail_response(connection, realm,
62 ret = MHD_digest_auth_check(connection, realm,
75 ret = MHD_queue_auth_fail_response(connection, realm,
/external/wpa_supplicant_8/hs20/server/
H A Dhs20_spp_server.c68 char *user, *realm, *post, *str; local
77 realm = getenv("HS20REALM");
78 if (realm == NULL) {
102 resp = hs20_spp_server_process(ctx, spp, user, realm, dmacc);
/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/dhcpcd-6.8.2/
H A Dauth.h52 unsigned char *realm; member in struct:token
/external/libmicrohttpd/src/testcurl/
H A Dtest_digestauth.c82 const char *realm = "test@example.com"; local
92 ret = MHD_queue_auth_fail_response(connection, realm,
99 ret = MHD_digest_auth_check(connection, realm,
112 ret = MHD_queue_auth_fail_response(connection, realm,
H A Dtest_digestauth_with_arguments.c81 const char *realm = "test@example.com"; local
91 ret = MHD_queue_auth_fail_response(connection, realm,
98 ret = MHD_digest_auth_check(connection, realm,
111 ret = MHD_queue_auth_fail_response(connection, realm,
/external/webrtc/webrtc/p2p/base/
H A Dtestturnserver.h106 virtual bool GetKey(const std::string& username, const std::string& realm, argument
108 return ComputeStunCredentialHash(username, realm, username, key);

Completed in 1720 milliseconds

1234