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 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/jni/
chromoting_jni_instance.cc 75 std::vector<protocol::AuthenticationMethod> auth_methods;
76 auth_methods.push_back(protocol::AuthenticationMethod::Spake2Pair());
77 auth_methods.push_back(protocol::AuthenticationMethod::Spake2(
78 protocol::AuthenticationMethod::HMAC_SHA256));
79 auth_methods.push_back(protocol::AuthenticationMethod::Spake2(
80 protocol::AuthenticationMethod::NONE));
81 auth_methods.push_back(protocol::AuthenticationMethod::ThirdParty());
  /external/chromium_org/remoting/test/
protocol_perftest.cc 274 host_secret.hash_function = protocol::AuthenticationMethod::NONE;
314 std::vector<protocol::AuthenticationMethod> auth_methods;
315 auth_methods.push_back(protocol::AuthenticationMethod::Spake2(
316 protocol::AuthenticationMethod::NONE));
  /external/chromium_org/remoting/client/
chromoting_client.cc 25 using protocol::AuthenticationMethod;
  /external/chromium_org/remoting/client/plugin/
chromoting_instance.cc 167 std::vector<protocol::AuthenticationMethod>* auth_methods) {
172 protocol::AuthenticationMethod authentication_method =
173 protocol::AuthenticationMethod::FromString(*it);
653 std::vector<protocol::AuthenticationMethod> auth_methods;
    [all...]

Completed in 359 milliseconds