OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CryptoUtils
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/net/quic/crypto/
crypto_utils_test.cc
15
EXPECT_FALSE(
CryptoUtils
::IsValidSNI("192.168.0.1"));
17
EXPECT_FALSE(
CryptoUtils
::IsValidSNI("somedomain"));
20
// EXPECT_FALSE(
CryptoUtils
::IsValidSNI("some_domain.com"));
23
EXPECT_FALSE(
CryptoUtils
::IsValidSNI(""));
26
EXPECT_TRUE(
CryptoUtils
::IsValidSNI("test.google.com"));
43
CryptoUtils
::NormalizeHostname(tests[i].input));
crypto_utils.cc
23
void
CryptoUtils
::GenerateNonce(QuicWallTime now,
48
bool
CryptoUtils
::IsValidSNI(StringPiece sni) {
62
string
CryptoUtils
::NormalizeHostname(const char* hostname) {
80
bool
CryptoUtils
::DeriveKeys(StringPiece premaster_secret,
crypto_utils.h
25
class NET_EXPORT_PRIVATE
CryptoUtils
{
quic_crypto_client_config.cc
248
if (
CryptoUtils
::IsValidSNI(server_hostname)) {
363
CryptoUtils
::GenerateNonce(now, rand, orbit, &out_params->client_nonce);
436
if (!
CryptoUtils
::DeriveKeys(out_params->initial_premaster_secret,
439
CryptoUtils
::CLIENT, &crypters)) {
474
if (!
CryptoUtils
::DeriveKeys(
477
CryptoUtils
::CLIENT, &out_params->initial_crypters)) {
610
if (!
CryptoUtils
::DeriveKeys(
613
CryptoUtils
::CLIENT, &out_params->forward_secure_crypters)) {
quic_crypto_server_config.cc
583
params->sni =
CryptoUtils
::NormalizeHostname(sni_tmp.get());
612
if (!
CryptoUtils
::DeriveKeys(params->initial_premaster_secret, params->aead,
614
hkdf_input,
CryptoUtils
::SERVER, &crypters)) {
652
if (!
CryptoUtils
::DeriveKeys(params->initial_premaster_secret, params->aead,
654
CryptoUtils
::SERVER,
685
if (!
CryptoUtils
::DeriveKeys(
688
CryptoUtils
::SERVER, ¶ms->forward_secure_crypters)) {
808
!
CryptoUtils
::IsValidSNI(info->sni)) {
[
all
...]
crypto_server_test.cc
172
CryptoUtils
::GenerateNonce(
Completed in 81 milliseconds