instance method
authenticate_with_http_digest
Ruby on Rails 2.3.18
Since v2.3.18Signature
authenticate_with_http_digest(realm = "Application", &password_procedure)
Authenticate with HTTP Digest, returns true or false
Parameters
-
realmopt = "Application" -
password_procedureblock
Source
# File actionpack/lib/action_controller/http_authentication.rb, line 164
def authenticate_with_http_digest(realm = "Application", &password_procedure)
HttpAuthentication::Digest.authenticate(self, realm, &password_procedure)
end
Defined in actionpack/lib/action_controller/http_authentication.rb line 164
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::HttpAuthentication::Digest::ControllerMethods