Home
last modified time | relevance | path

Searched refs:QuicCryptoConfig (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/net/quic/crypto/
Dcrypto_handshake.cc336 const char QuicCryptoConfig::kInitialLabel[] = "QUIC key expansion";
339 const char QuicCryptoConfig::kCETVLabel[] = "QUIC CETV block";
342 const char QuicCryptoConfig::kForwardSecureLabel[] =
345 QuicCryptoConfig::QuicCryptoConfig() in QuicCryptoConfig() function in net::QuicCryptoConfig
349 QuicCryptoConfig::~QuicCryptoConfig() {} in ~QuicCryptoConfig()
Dcrypto_handshake.h189 class NET_EXPORT_PRIVATE QuicCryptoConfig {
205 QuicCryptoConfig();
206 ~QuicCryptoConfig();
217 DISALLOW_COPY_AND_ASSIGN(QuicCryptoConfig);
Dquic_crypto_client_config.cc418 hkdf_input.append(QuicCryptoConfig::kCETVLabel, in FillClientHello()
419 strlen(QuicCryptoConfig::kCETVLabel) + 1); in FillClientHello()
469 const size_t label_len = strlen(QuicCryptoConfig::kInitialLabel) + 1; in FillClientHello()
471 hkdf_input.append(QuicCryptoConfig::kInitialLabel, label_len); in FillClientHello()
605 const size_t label_len = strlen(QuicCryptoConfig::kForwardSecureLabel) + 1; in ProcessServerHello()
607 hkdf_input.append(QuicCryptoConfig::kForwardSecureLabel, label_len); in ProcessServerHello()
Dquic_crypto_server_config.cc604 hkdf_input.append(QuicCryptoConfig::kCETVLabel, in ProcessClientHello()
605 strlen(QuicCryptoConfig::kCETVLabel) + 1); in ProcessClientHello()
647 size_t label_len = strlen(QuicCryptoConfig::kInitialLabel) + 1; in ProcessClientHello()
649 hkdf_input.append(QuicCryptoConfig::kInitialLabel, label_len); in ProcessClientHello()
679 label_len = strlen(QuicCryptoConfig::kForwardSecureLabel) + 1; in ProcessClientHello()
681 forward_secure_hkdf_input.append(QuicCryptoConfig::kForwardSecureLabel, in ProcessClientHello()
Dquic_crypto_client_config.h23 class NET_EXPORT_PRIVATE QuicCryptoClientConfig : public QuicCryptoConfig {
Dquic_crypto_server_config.h262 class NET_EXPORT_PRIVATE Config : public QuicCryptoConfig,