Home
last modified time | relevance | path

Searched refs:current_method_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/remoting/protocol/
Dnegotiating_client_authenticator.cc56 if (method != current_method_) { in ProcessMessage()
67 current_method_ = method; in ProcessMessage()
86 if (!current_method_.is_valid()) { in GetNextMessage()
116 DCHECK(current_method_.is_valid()); in CreateAuthenticatorForCurrentMethod()
117 if (current_method_.type() == AuthenticationMethod::THIRD_PARTY) { in CreateAuthenticatorForCurrentMethod()
126 DCHECK(current_method_.type() == AuthenticationMethod::SPAKE2 || in CreateAuthenticatorForCurrentMethod()
127 current_method_.type() == AuthenticationMethod::SPAKE2_PAIR); in CreateAuthenticatorForCurrentMethod()
129 (current_method_.type() == AuthenticationMethod::SPAKE2_PAIR); in CreateAuthenticatorForCurrentMethod()
146 current_method_ = AuthenticationMethod::Spake2Pair(); in CreatePreferredAuthenticator()
156 current_method_.hash_function(), authentication_tag_, shared_secret), in CreateV2AuthenticatorWithSecret()
Dnegotiating_host_authenticator.cc75 if (current_method_.is_valid() && method != current_method_) { in ProcessMessage()
125 current_method_ = method; in ProcessMessage()
135 if (!current_method_.is_valid()) { in ProcessMessage()
136 current_method_ = method; in ProcessMessage()
157 DCHECK(current_method_.is_valid()); in CreateAuthenticator()
159 if (current_method_.type() == AuthenticationMethod::THIRD_PARTY) { in CreateAuthenticator()
166 } else if (current_method_ == AuthenticationMethod::Spake2Pair() && in CreateAuthenticator()
179 DCHECK(current_method_.type() == AuthenticationMethod::SPAKE2 || in CreateAuthenticator()
180 current_method_.type() == AuthenticationMethod::SPAKE2_PAIR); in CreateAuthenticator()
Dnegotiating_authenticator_base.cc31 : current_method_(AuthenticationMethod::Invalid()), in NegotiatingAuthenticatorBase()
79 DCHECK(current_method_.is_valid()); in GetNextMessageInternal()
89 result->AddAttr(kMethodAttributeQName, current_method_.ToString()); in GetNextMessageInternal()
Dnegotiating_authenticator_base.h77 return current_method_; in current_method_for_testing()
98 AuthenticationMethod current_method_; variable