Flowdock
make_passwd(realm, user, pass) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

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
Register or log in to add new notes.