HomeSort by relevance Sort by last modified time
    Searched refs:AuthenticationMethod (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/remoting/protocol/
authentication_method.h 5 // AuthenticationMethod represents an authentication algorithm and its
22 class AuthenticationMethod {
37 static AuthenticationMethod Invalid();
38 static AuthenticationMethod Spake2(HashFunction hash_function);
39 static AuthenticationMethod Spake2Pair();
40 static AuthenticationMethod ThirdParty();
44 static AuthenticationMethod FromString(const std::string& value);
66 bool operator ==(const AuthenticationMethod& other) const;
67 bool operator !=(const AuthenticationMethod& other) const {
72 AuthenticationMethod();
    [all...]
authentication_method.cc 16 AuthenticationMethod AuthenticationMethod::Invalid() {
17 return AuthenticationMethod();
21 AuthenticationMethod AuthenticationMethod::Spake2(HashFunction hash_function) {
22 return AuthenticationMethod(SPAKE2, hash_function);
26 AuthenticationMethod AuthenticationMethod::Spake2Pair() {
27 return AuthenticationMethod(SPAKE2_PAIR, HMAC_SHA256);
31 AuthenticationMethod AuthenticationMethod::ThirdParty()
    [all...]
negotiating_authenticator_unittest.cc 58 AuthenticationMethod::HashFunction hash_function,
60 std::string host_secret_hash = AuthenticationMethod::ApplyHashFunction(
66 std::vector<AuthenticationMethod> methods;
67 methods.push_back(AuthenticationMethod::Spake2Pair());
68 methods.push_back(AuthenticationMethod::Spake2(
69 AuthenticationMethod::HMAC_SHA256));
71 methods.push_back(AuthenticationMethod::Spake2(
72 AuthenticationMethod::NONE));
117 void VerifyAccepted(const AuthenticationMethod& expected_method) {
153 AuthenticationMethod::HMAC_SHA256, false))
    [all...]
negotiating_authenticator_base.h 76 const AuthenticationMethod& current_method_for_testing() const {
87 void AddMethod(const AuthenticationMethod& method);
97 std::vector<AuthenticationMethod> methods_;
98 AuthenticationMethod current_method_;
negotiating_host_authenticator.cc 37 AuthenticationMethod::HashFunction hash_function,
43 result->AddMethod(AuthenticationMethod::Spake2(hash_function));
45 result->AddMethod(AuthenticationMethod::Spake2Pair());
59 result->AddMethod(AuthenticationMethod::ThirdParty());
72 AuthenticationMethod method = AuthenticationMethod::FromString(method_attr);
87 method = AuthenticationMethod::Invalid();
106 AuthenticationMethod list_value = AuthenticationMethod::FromString(*it);
159 if (current_method_.type() == AuthenticationMethod::THIRD_PARTY)
    [all...]
negotiating_client_authenticator.cc 28 const std::vector<AuthenticationMethod>& methods)
38 for (std::vector<AuthenticationMethod>::const_iterator it = methods.begin();
53 AuthenticationMethod method = AuthenticationMethod::FromString(method_attr);
100 for (std::vector<AuthenticationMethod>::iterator it = methods_.begin();
117 if (current_method_.type() == AuthenticationMethod::THIRD_PARTY) {
126 DCHECK(current_method_.type() == AuthenticationMethod::SPAKE2 ||
127 current_method_.type() == AuthenticationMethod::SPAKE2_PAIR);
129 (current_method_.type() == AuthenticationMethod::SPAKE2_PAIR);
140 AuthenticationMethod::Spake2Pair()) != methods_.end())
    [all...]
it2me_host_authenticator_factory.cc 31 local_cert_, key_pair_, shared_secret_, AuthenticationMethod::NONE, NULL);
pairing_client_authenticator.cc 65 AuthenticationMethod::ApplyHashFunction(
66 AuthenticationMethod::HMAC_SHA256,
negotiating_authenticator_base.cc 31 : current_method_(AuthenticationMethod::Invalid()),
94 const AuthenticationMethod& method) {
negotiating_client_authenticator.h 33 const std::vector<AuthenticationMethod>& methods);
negotiating_host_authenticator.h 39 AuthenticationMethod::HashFunction hash_function,
  /external/chromium_org/remoting/host/
pin_hash.cc 16 std::string hash = protocol::AuthenticationMethod::ApplyHashFunction(
17 protocol::AuthenticationMethod::HMAC_SHA256, host_id, pin);
34 remoting::protocol::AuthenticationMethod::ApplyHashFunction(
  /external/chromium_org/remoting/client/
client_config.h 28 std::vector<protocol::AuthenticationMethod> authentication_methods;
chromoting_client.cc 25 using protocol::AuthenticationMethod;
  /external/chromium_org/remoting/client/jni/
chromoting_jni_instance.cc 239 protocol::AuthenticationMethod::FromString("spake2_pair"));
243 protocol::AuthenticationMethod::FromString("spake2_hmac"));
245 protocol::AuthenticationMethod::FromString("spake2_plain"));
  /external/chromium_org/remoting/client/plugin/
chromoting_instance.cc 158 protocol::AuthenticationMethod authentication_method =
159 protocol::AuthenticationMethod::FromString(*it);
    [all...]

Completed in 456 milliseconds