Module: ActionController::HttpAuthentication::Basic::ControllerMethods::ClassMethods
Relationships & Source Files | |
Defined in: | actionpack/lib/action_controller/metal/http_authentication.rb |
Instance Method Summary
Instance Method Details
#http_basic_authenticate_with(options = {})
[ GitHub ]# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 69
def http_basic_authenticate_with( = {}) before_action( .except(:name, :password, :realm)) do authenticate_or_request_with_http_basic( [:realm] || "Application") do |name, password| # This comparison uses & so that it doesn't short circuit and # uses `variable_size_secure_compare` so that length information # isn't leaked. ActiveSupport::SecurityUtils.variable_size_secure_compare(name, [:name]) & ActiveSupport::SecurityUtils.variable_size_secure_compare(password, [:password]) end end end