method

delete_passwd

delete_passwd(realm, user)
public

No documentation available.

# File lib/webrick/httpauth/htdigest.rb, line 75
      def delete_passwd(realm, user)
        if hash = @digest[realm]
          hash.delete(user)
        end
      end