= private = protected
make_passwd(realm, user, pass)
Used by UserDB to create a basic password entry
# File lib/webrick/httpauth/basicauth.rb, line 43 def self.make_passwd(realm, user, pass) pass ||= "" pass.crypt(Utils::random_string(2)) end