Searched defs:AuthenticationMethod (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/remoting/protocol/
H A Dauthentication_method.cc16 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 AuthenticationMetho
80 AuthenticationMethod::AuthenticationMethod() function in class:remoting::protocol::AuthenticationMethod
85 AuthenticationMethod::AuthenticationMethod(MethodType type, function in class:remoting::protocol::AuthenticationMethod
[all...]
H A Dauthentication_method.h5 // AuthenticationMethod represents an authentication algorithm and its
22 class AuthenticationMethod { class in namespace:remoting::protocol
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...]

Completed in 470 milliseconds