File: userdb.rbs

package info (click to toggle)
ruby-webrick 1.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 756 kB
  • sloc: ruby: 7,781; sh: 4; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
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