HomeSort by relevance Sort by last modified time
    Searched refs:CryptoUtils (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/net/quic/crypto/
crypto_utils_test.cc 16 EXPECT_FALSE(CryptoUtils::IsValidSNI("192.168.0.1"));
18 EXPECT_FALSE(CryptoUtils::IsValidSNI("somedomain"));
21 // EXPECT_FALSE(CryptoUtils::IsValidSNI("some_domain.com"));
24 EXPECT_FALSE(CryptoUtils::IsValidSNI(""));
27 EXPECT_TRUE(CryptoUtils::IsValidSNI("test.google.com"));
44 CryptoUtils::NormalizeHostname(tests[i].input));
112 bool ok = CryptoUtils::ExportKeyingMaterial(subkey_secret,
crypto_utils.h 25 class NET_EXPORT_PRIVATE CryptoUtils {
79 DISALLOW_COPY_AND_ASSIGN(CryptoUtils);
crypto_utils.cc 24 void CryptoUtils::GenerateNonce(QuicWallTime now,
49 bool CryptoUtils::IsValidSNI(StringPiece sni) {
63 string CryptoUtils::NormalizeHostname(const char* hostname) {
81 bool CryptoUtils::DeriveKeys(StringPiece premaster_secret,
128 bool CryptoUtils::ExportKeyingMaterial(StringPiece subkey_secret,
quic_crypto_client_config.cc 348 if (CryptoUtils::IsValidSNI(server_id.host())) {
464 CryptoUtils::GenerateNonce(now, rand, orbit, &out_params->client_nonce);
523 if (!CryptoUtils::DeriveKeys(out_params->initial_premaster_secret,
526 CryptoUtils::CLIENT, &crypters,
566 if (!CryptoUtils::DeriveKeys(
569 CryptoUtils::CLIENT, &out_params->initial_crypters,
752 if (!CryptoUtils::DeriveKeys(
755 CryptoUtils::CLIENT, &out_params->forward_secure_crypters,
quic_crypto_server_config.cc 654 params->sni = CryptoUtils::NormalizeHostname(sni_tmp.get());
685 if (!CryptoUtils::DeriveKeys(params->initial_premaster_secret, params->aead,
687 hkdf_input, CryptoUtils::SERVER, &crypters,
726 if (!CryptoUtils::DeriveKeys(params->initial_premaster_secret, params->aead,
728 CryptoUtils::SERVER,
760 if (!CryptoUtils::DeriveKeys(
763 CryptoUtils::SERVER, &params->forward_secure_crypters,
    [all...]
crypto_server_test.cc 263 CryptoUtils::GenerateNonce(
  /external/chromium_org/net/quic/
quic_crypto_stream.cc 86 return CryptoUtils::ExportKeyingMaterial(

Completed in 187 milliseconds