OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AuthenticationMethod
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/remoting/protocol/
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
...]
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
...]
Completed in 1113 milliseconds