Sha256: f1611208b3882a9e9a55c7b5a6f1f9a3613e1ae6247d1494dc94b371e2e1aff9

Contents?: true

Size: 539 Bytes

Versions: 23

Compression:

Stored size: 539 Bytes

Contents

module HTTPX
  module Plugins
    module Authentication
      class Digest
        @user: String
        @password: String

        def can_authenticate?: (String? authenticate) -> boolish

        def authenticate: (Request request, String authenticate) -> String

        private

        def generate_header: (String meth, String uri, String authenticate) -> String

        def initialize: (string user, string password) -> void

        def make_cnonce: () -> String

        def next_nonce: () -> Integer
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
httpx-0.20.2 sig/plugins/authentication/digest.rbs
httpx-0.20.1 sig/plugins/authentication/digest.rbs
httpx-0.20.0 sig/plugins/authentication/digest.rbs