Home | History | Annotate | Download | only in protocol

Lines Matching defs:AuthenticationMethod

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();
73 AuthenticationMethod(MethodType type, HashFunction hash_function);
82 AuthenticationMethod::HashFunction hash_function;