Lines Matching refs:AuthenticationMethod
16 AuthenticationMethod AuthenticationMethod::Invalid() { in Invalid()
17 return AuthenticationMethod(); in Invalid()
21 AuthenticationMethod AuthenticationMethod::Spake2(HashFunction hash_function) { in Spake2()
22 return AuthenticationMethod(SPAKE2, hash_function); in Spake2()
26 AuthenticationMethod AuthenticationMethod::Spake2Pair() { in Spake2Pair()
27 return AuthenticationMethod(SPAKE2_PAIR, HMAC_SHA256); in Spake2Pair()
31 AuthenticationMethod AuthenticationMethod::ThirdParty() { in ThirdParty()
32 return AuthenticationMethod(THIRD_PARTY, NONE); in ThirdParty()
36 AuthenticationMethod AuthenticationMethod::FromString( in FromString()
47 return AuthenticationMethod::Invalid(); in FromString()
52 std::string AuthenticationMethod::ApplyHashFunction( in ApplyHashFunction()
80 AuthenticationMethod::AuthenticationMethod() in AuthenticationMethod() function in remoting::protocol::AuthenticationMethod
85 AuthenticationMethod::AuthenticationMethod(MethodType type, in AuthenticationMethod() function in remoting::protocol::AuthenticationMethod
92 AuthenticationMethod::HashFunction AuthenticationMethod::hash_function() const { in hash_function()
97 const std::string AuthenticationMethod::ToString() const { in ToString()
124 bool AuthenticationMethod::operator ==( in operator ==()
125 const AuthenticationMethod& other) const { in operator ==()
137 hash_function = AuthenticationMethod::NONE; in Parse()
139 hash_function = AuthenticationMethod::HMAC_SHA256; in Parse()