Lines Matching defs:provider
96 /* lookup and cache the actual provider now */
97 newp->provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
101 if (newp->provider == NULL) {
102 /* by the time they use it, the provider should be loaded and
105 "Unknown Authn provider: %s",
109 if (!newp->provider->check_password) {
112 "The '%s' Authn provider doesn't support "
213 "Set to 'MD5' to use the auth provider's authentication "
337 const authn_provider *provider;
339 /* For now, if a provider isn't set, we'll be nice and use the file
340 * provider.
343 provider = ap_lookup_provider(AUTHN_PROVIDER_GROUP,
347 if (!provider || !provider->check_password) {
349 "No Authn provider configured");
356 provider = current_provider->provider;
363 if (!provider->get_realm_hash) {
365 "Authn provider does not support "
371 auth_result = provider->get_realm_hash(r, sent_user, realm,
379 auth_result = provider->check_password(r, sent_user, sent_pw);