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.24.3 sig/plugins/authentication/digest.rbs
httpx-0.24.2 sig/plugins/authentication/digest.rbs
httpx-0.24.1 sig/plugins/authentication/digest.rbs
httpx-0.24.0 sig/plugins/authentication/digest.rbs
httpx-0.23.4 sig/plugins/authentication/digest.rbs
httpx-0.23.3 sig/plugins/authentication/digest.rbs
httpx-0.23.2 sig/plugins/authentication/digest.rbs
httpx-0.23.1 sig/plugins/authentication/digest.rbs
httpx-0.23.0 sig/plugins/authentication/digest.rbs
httpx-0.22.5 sig/plugins/authentication/digest.rbs
httpx-0.22.4 sig/plugins/authentication/digest.rbs
httpx-0.22.3 sig/plugins/authentication/digest.rbs
httpx-0.22.2 sig/plugins/authentication/digest.rbs
httpx-0.22.1 sig/plugins/authentication/digest.rbs
httpx-0.22.0 sig/plugins/authentication/digest.rbs
httpx-0.21.1 sig/plugins/authentication/digest.rbs
httpx-0.21.0 sig/plugins/authentication/digest.rbs
httpx-0.20.5 sig/plugins/authentication/digest.rbs
httpx-0.20.4 sig/plugins/authentication/digest.rbs
httpx-0.20.3 sig/plugins/authentication/digest.rbs