summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/sig/httpauth/userdb.rbs
blob: a6aefd93b94445ea4ce8cc4a451b93695546fee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module WEBrick
  module HTTPAuth
    module UserDB
      attr_accessor auth_type: String

      def make_passwd: (String realm, String user, String pass) -> String

      def set_passwd: (String realm, String user, String pass) -> void

      def get_passwd: (String realm, String user, ?bool reload_db) -> String
    end
  end
end