OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SPAKE2
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/remoting/protocol/
authentication_method.h
9
// spake2_plain -
SPAKE2
without hashing applied to the password.
10
// spake2_hmac -
SPAKE2
with HMAC hashing of the password.
26
SPAKE2
,
38
static AuthenticationMethod
Spake2
(HashFunction hash_function);
authentication_method.cc
21
AuthenticationMethod AuthenticationMethod::
Spake2
(HashFunction hash_function) {
22
return AuthenticationMethod(
SPAKE2
, hash_function);
41
return
Spake2
(NONE);
43
return
Spake2
(HMAC_SHA256);
108
case
SPAKE2
:
negotiating_client_authenticator.cc
126
DCHECK(current_method_.type() == AuthenticationMethod::
SPAKE2
||
negotiating_host_authenticator.cc
43
result->AddMethod(AuthenticationMethod::
Spake2
(hash_function));
175
// In this case, the on-the-wire protocol is plain
Spake2
, advertised as
179
DCHECK(current_method_.type() == AuthenticationMethod::
SPAKE2
||
Completed in 380 milliseconds