module HTTPX::Plugins::DigestAuth::InstanceMethods

  1. lib/httpx/plugins/digest_auth.rb

Methods

Public Instance

  1. digest_auth

Public Instance methods

digest_auth(user, password, hashed: false)
[show source]
   # File lib/httpx/plugins/digest_auth.rb
35 def digest_auth(user, password, hashed: false)
36   with(digest: Authentication::Digest.new(user, password, hashed: hashed))
37 end