ri > ActionController::HttpAuthentication::Digest

📛 NAME

ActionController::HttpAuthentication::Digest

🚀 Quick Reference

Use CaseCommandDescription
🔐 Authenticate with HTTP Digestauthenticate_or_request_with_http_digest(realm)Performs HTTP Digest authentication using the given realm
🔑 Get authentication headerauthentication_headerReturns the WWW-Authenticate header
🔓 Decode credentialsdecode_credentialsDecodes the HTTP Authorization header
🔐 Encode credentialsencode_credentialsEncodes credentials for the response
✅ Validate digest responsevalidate_digest_responseValidates the digest response from the client

📖 Description

Makes it dead easy to do HTTP Digest authentication.


📝 Simple Digest Example

require "digest/md5"
class PostsController < ApplicationController
  REALM = "SuperSecret"
  USERS = {"dhh" => "secret", #plain text password
           "dap" => Digest::MD5.hexdigest(["dap",REALM,"secret"].join(":"))}  #ha1 digest password

  before_action :authenticate, except: [:index]

  def index
    render plain: "Everyone can see me!"
  end

  def edit
    render plain: "I'm only accessible if you know the password"
  end

  private
    def authenticate
      authenticate_or_request_with_http_digest(REALM) do |username|
        USERS[username]
      end
    end
end

📝 Notes

The authenticate_or_request_with_http_digest block must return the user's password or the ha1 digest hash so the framework can appropriately hash to check the user's credentials. Returning nil will cause authentication to fail.

Storing the ha1 hash: MD5(username:realm:password), is better than storing a plain password. If the password file or database is compromised, the attacker would be able to use the ha1 hash to authenticate as the user at this realm, but would not have the user's password to try using at other sites.

In rare instances, web servers or front proxies strip authorization headers before they reach your application. You can debug this situation by logging all environment variables, and check for HTTP_AUTHORIZATION, amongst others.


⚙️ Instance Methods

ActionController::HttpAuthentication::Digest
📛 NAME 🚀 Quick Reference 📖 Description
📝 Simple Digest Example 📝 Notes
⚙️ Instance Methods

Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-31 14:12 @216.73.217.152
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format