HomeSort by relevance Sort by last modified time
    Searched refs:AuthenticationMethod (Results 1 - 18 of 18) 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) {
160 AuthenticationMethod::HMAC_SHA256, false))
    [all...]
negotiating_authenticator_base.h 77 const AuthenticationMethod& current_method_for_testing() const {
88 void AddMethod(const AuthenticationMethod& method);
98 std::vector<AuthenticationMethod> methods_;
99 AuthenticationMethod current_method_;
negotiating_host_authenticator.cc 38 AuthenticationMethod::HashFunction hash_function,
44 result->AddMethod(AuthenticationMethod::Spake2(hash_function));
46 result->AddMethod(AuthenticationMethod::Spake2Pair());
60 result->AddMethod(AuthenticationMethod::ThirdParty());
73 AuthenticationMethod method = AuthenticationMethod::FromString(method_attr);
88 method = AuthenticationMethod::Invalid();
107 AuthenticationMethod list_value = AuthenticationMethod::FromString(*it);
160 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()),
101 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);
32 remoting::protocol::AuthenticationMethod::ApplyHashFunction(
  /external/chromium_org/remoting/client/
client_config.h 26 std::vector<protocol::AuthenticationMethod> authentication_methods;
chromoting_client.cc 25 using protocol::AuthenticationMethod;
  /external/chromium_org/remoting/ios/bridge/
client_instance.cc 81 protocol::AuthenticationMethod::FromString("spake2_pair"));
83 protocol::AuthenticationMethod::FromString("spake2_hmac"));
85 protocol::AuthenticationMethod::FromString("spake2_plain"));
  /external/chromium_org/remoting/client/jni/
chromoting_jni_instance.cc 75 protocol::AuthenticationMethod::FromString("spake2_pair"));
77 protocol::AuthenticationMethod::FromString("spake2_hmac"));
79 protocol::AuthenticationMethod::FromString("spake2_plain"));
81 protocol::AuthenticationMethod::FromString("third_party"));
  /external/chromium_org/tools/valgrind/tsan/
suppressions_win32.txt 302 fun:remoting::protocol::AuthenticationMethod::ApplyHashFunction
  /external/chromium_org/remoting/client/plugin/
chromoting_instance.cc 197 protocol::AuthenticationMethod authentication_method =
198 protocol::AuthenticationMethod::FromString(*it);
    [all...]

Completed in 529 milliseconds