Flowdock
method

http_basic_authenticate_or_request_with

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: ActionController::HttpAuthentication::Basic::ControllerMethods
http_basic_authenticate_or_request_with(name:, password:, realm: nil, message: nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 78
        def http_basic_authenticate_or_request_with(name,, password,, realm: nil, message: nil)
          authenticate_or_request_with_http_basic(realm, message) do |given_name, given_password|
            # This comparison uses & so that it doesn't short circuit and
            # uses `secure_compare` so that length information isn't leaked.
            ActiveSupport::SecurityUtils.secure_compare(given_name, name) &
              ActiveSupport::SecurityUtils.secure_compare(given_password, password)
          end
        end
Register or log in to add new notes.