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/
quic_crypto_client_config.cc
416
string
hkdf_input
;
local
418
hkdf_input
.append(QuicCryptoConfig::kCETVLabel,
420
hkdf_input
.append(reinterpret_cast<char*>(&guid), sizeof(guid));
421
hkdf_input
.append(client_hello_serialized.data(),
423
hkdf_input
.append(cached->server_config());
426
if (!channel_id_signer_->Sign(server_hostname,
hkdf_input
,
438
out_params->server_nonce,
hkdf_input
,
468
string
hkdf_input
;
local
470
hkdf_input
.reserve(label_len + out_params->hkdf_input_suffix.size());
471
hkdf_input
.append(QuicCryptoConfig::kInitialLabel, label_len)
604
string
hkdf_input
;
local
[
all
...]
quic_crypto_server_config.cc
603
string
hkdf_input
;
local
604
hkdf_input
.append(QuicCryptoConfig::kCETVLabel,
606
hkdf_input
.append(reinterpret_cast<char*>(&guid), sizeof(guid));
607
hkdf_input
.append(client_hello_serialized.data(),
609
hkdf_input
.append(requested_config->serialized);
614
hkdf_input
, CryptoUtils::SERVER, &crypters)) {
637
if (!ChannelIDVerifier::Verify(key,
hkdf_input
, signature)) {
646
string
hkdf_input
;
local
648
hkdf_input
.reserve(label_len + hkdf_suffix.size());
649
hkdf_input
.append(QuicCryptoConfig::kInitialLabel, label_len)
[
all
...]
Completed in 81 milliseconds