sig/plugins/authentication/digest.rbs in httpx-0.24.3 vs sig/plugins/authentication/digest.rbs in httpx-0.24.4
- old
+ new
@@ -2,19 +2,20 @@
module Plugins
module Authentication
class Digest
@user: String
@password: String
+ @hashed: bool
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 initialize: (string user, string password, ?hashed: bool, **untyped) -> void
def make_cnonce: () -> String
def next_nonce: () -> Integer
end