method
make_passwd
![No documentation Importance_0](https://d2vfyqvduarcvs.cloudfront.net/images/importance_0.png?1349367920)
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