Method: ActionController::HttpAuthentication::Digest#opaque
- Defined in:
- actionpack/lib/action_controller/metal/http_authentication.rb
#opaque(secret_key) ⇒ Object
Opaque based on digest of secret key
348 349 350 |
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 348 def opaque(secret_key) OpenSSL::Digest::MD5.hexdigest(secret_key) end |