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
37 def digest_auth(user, password, hashed: false)
38   with(digest: Authentication::Digest.new(user, password, hashed: hashed))
39 end