method
make_passwd
make_passwd(realm, user, pass)
public
Hide source
# File lib/webrick/httpauth/basicauth.rb, line 21 def self.make_passwd(realm, user, pass) pass ||= "" pass.crypt(Utils::random_string(2)) end