# File lib/openid/server.rb, line 384
      def trust_root_valid
        return true unless @trust_root
        tr = OpenID::TrustRoot.parse(@trust_root)
        raise MalformedTrustRoot.new(nil, @trust_root) if tr.nil?
        return tr.validate_url(@return_to)
      end