Lines Matching defs:realm
38 * - Sharing a realm among multiple servers has following problems:
88 const char *realm;
138 const char *realm;
445 static const char *set_realm(cmd_parms *cmd, void *config, const char *realm)
459 /* The core already handles the realm, but it's just too convenient to
464 conf->realm = realm;
472 apr_sha1_update_binary(&conf->nonce_ctx, (const unsigned char *) realm,
473 strlen(realm));
653 "The authentication realm (e.g. \"Members Only\")"),
953 else if (!strcasecmp(key, "realm"))
954 resp->realm = apr_pstrdup(r->pool, value);
973 if (!resp->username || !resp->realm || !resp->nonce || !resp->uri
1030 /* The hash part of the nonce is a SHA-1 hash of the time, realm, server host
1216 apr_psprintf(r->pool, "Digest realm=\"%s\", "
1296 /* We expect the password to be md5 hash of user:realm:password */
1297 auth_result = provider->get_realm_hash(r, user, conf->realm,
1584 "missing user, realm, nonce, uri, digest, "
1694 if (!conf->realm) {
1696 "realm mismatch - got `%s' but no realm specified",
1697 resp->realm);
1702 if (!resp->realm || strcmp(resp->realm, conf->realm)) {
1704 "realm mismatch - got `%s' but expected `%s'",
1705 resp->realm, conf->realm);
1723 "user `%s' in realm `%s' not found: %s",
1724 r->user, conf->realm, r->uri);
1734 "user `%s' in realm `%s' denied by provider: %s",
1735 r->user, conf->realm, r->uri);