OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hkdf_input
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/quic/crypto/
crypto_handshake.cc
731
string
hkdf_input
;
local
733
hkdf_input
.append(QuicCryptoConfig::kCETVLabel,
735
hkdf_input
.append(reinterpret_cast<char*>(&guid), sizeof(guid));
736
hkdf_input
.append(client_hello_serialized.data(),
738
hkdf_input
.append(cached->server_config());
741
if (!channel_id_signer_->Sign(server_hostname,
hkdf_input
,
753
out_params->server_nonce,
hkdf_input
,
776
string
hkdf_input
;
local
778
hkdf_input
.reserve(label_len + out_params->hkdf_input_suffix.size());
779
hkdf_input
.append(QuicCryptoConfig::kInitialLabel, label_len)
867
string
hkdf_input
;
local
[
all
...]
crypto_server_config.cc
430
string
hkdf_input
;
local
431
hkdf_input
.append(QuicCryptoConfig::kCETVLabel,
433
hkdf_input
.append(reinterpret_cast<char*>(&guid), sizeof(guid));
434
hkdf_input
.append(client_hello_serialized.data(),
436
hkdf_input
.append(requested_config->serialized);
440
info.client_nonce, info.server_nonce,
hkdf_input
,
461
if (!ChannelIDVerifier::Verify(key,
hkdf_input
, signature)) {
470
string
hkdf_input
;
local
472
hkdf_input
.reserve(label_len + hkdf_suffix.size());
473
hkdf_input
.append(QuicCryptoConfig::kInitialLabel, label_len)
[
all
...]
Completed in 148 milliseconds