# File lib/brakeman/checks/check_weak_hash.rb, line 108
  def hashing_password? call
    call.each_arg do |arg|
      @has_password = false

      process arg

      if @has_password
        return @has_password
      end
    end

    nil
  end