Home | History | Annotate | Download | only in http

Lines Matching defs:HttpAuthHandlerDigest

48 HttpAuthHandlerDigest::NonceGenerator::NonceGenerator() {
51 HttpAuthHandlerDigest::NonceGenerator::~NonceGenerator() {
54 HttpAuthHandlerDigest::DynamicNonceGenerator::DynamicNonceGenerator() {
57 std::string HttpAuthHandlerDigest::DynamicNonceGenerator::GenerateNonce()
68 HttpAuthHandlerDigest::FixedNonceGenerator::FixedNonceGenerator(
73 std::string HttpAuthHandlerDigest::FixedNonceGenerator::GenerateNonce() const {
77 HttpAuthHandlerDigest::Factory::Factory()
81 HttpAuthHandlerDigest::Factory::~Factory() {
84 void HttpAuthHandlerDigest::Factory::set_nonce_generator(
89 int HttpAuthHandlerDigest::Factory::CreateAuthHandler(
100 new HttpAuthHandlerDigest(digest_nonce_count, nonce_generator_.get()));
107 HttpAuth::AuthorizationResult HttpAuthHandlerDigest::HandleAnotherChallenge(
134 bool HttpAuthHandlerDigest::Init(HttpAuth::ChallengeTokenizer* challenge) {
138 int HttpAuthHandlerDigest::GenerateAuthTokenImpl(
160 HttpAuthHandlerDigest::HttpAuthHandlerDigest(
170 HttpAuthHandlerDigest::~HttpAuthHandlerDigest() {
191 bool HttpAuthHandlerDigest::ParseChallenge(
228 bool HttpAuthHandlerDigest::ParseChallengeProperty(const std::string& name,
270 std::string HttpAuthHandlerDigest::QopToString(QualityOfProtection qop) {
283 std::string HttpAuthHandlerDigest::AlgorithmToString(
298 void HttpAuthHandlerDigest::GetRequestMethodAndPath(
315 std::string HttpAuthHandlerDigest::AssembleResponseDigest(
326 if (algorithm_ == HttpAuthHandlerDigest::ALGORITHM_MD5_SESS)
334 if (qop_ != HttpAuthHandlerDigest::QOP_UNSPECIFIED) {
341 std::string HttpAuthHandlerDigest::AssembleCredentials(