#include "net/http/http_auth_handler_ntlm.h"
#include "net/base/url_util.h"
#include "net/cert/x509_util.h"
#include "net/http/http_auth_scheme.h"
#include "net/ssl/ssl_info.h"
namespace net {
HttpAuthHandlerNTLM::Factory::Factory() = default;
HttpAuthHandlerNTLM::Factory::~Factory() = default;
bool HttpAuthHandlerNTLM::Init(
HttpAuthChallengeTokenizer* tok,
const SSLInfo& ssl_info,
const NetworkAnonymizationKey& network_anonymization_key) { … }
HttpAuth::AuthorizationResult HttpAuthHandlerNTLM::HandleAnotherChallengeImpl(
HttpAuthChallengeTokenizer* challenge) { … }
std::string HttpAuthHandlerNTLM::CreateSPN(
const url::SchemeHostPort& scheme_host_port) { … }
}