OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QuicRandom
(Results
1 - 25
of
47
) sorted by null
1
2
/external/chromium_org/net/quic/crypto/
quic_random.h
16
class NET_EXPORT_PRIVATE
QuicRandom
{
18
virtual ~
QuicRandom
() {}
22
static
QuicRandom
* GetInstance();
31
// NOTE: the constructor of a
QuicRandom
object is responsible for seeding
quic_random_test.cc
19
QuicRandom
* rng =
QuicRandom
::GetInstance();
25
QuicRandom
* rng =
QuicRandom
::GetInstance();
35
QuicRandom
* rng =
QuicRandom
::GetInstance();
ephemeral_key_source.h
17
class
QuicRandom
;
34
QuicRandom
* rand,
key_exchange.h
16
class
QuicRandom
;
27
virtual KeyExchange* NewKeyPair(
QuicRandom
* rand) const = 0;
curve25519_key_exchange.h
17
class
QuicRandom
;
31
static std::string NewPrivateKey(
QuicRandom
* rand);
34
virtual KeyExchange* NewKeyPair(
QuicRandom
* rand) const OVERRIDE;
crypto_secret_boxer.h
15
class
QuicRandom
;
32
std::string Box(
QuicRandom
* rand, base::StringPiece plaintext) const;
quic_random.cc
15
class DefaultRandom : public
QuicRandom
{
19
//
QuicRandom
implementation
57
QuicRandom
*
QuicRandom
::GetInstance() { return DefaultRandom::GetInstance(); }
crypto_utils.h
22
class
QuicRandom
;
37
QuicRandom
* random_generator,
curve25519_key_exchange_test.cc
21
QuicRandom
* const rand =
QuicRandom
::GetInstance();
quic_crypto_server_config.h
31
class
QuicRandom
;
86
// generation since P-256 key generation doesn't use the
QuicRandom
given
98
QuicRandom
* server_nonce_entropy);
107
QuicRandom
* rand,
123
QuicRandom
* rand,
190
QuicRandom
* rand,
330
QuicRandom
* rand,
341
QuicRandom
* rand,
352
std::string NewServerNonce(
QuicRandom
* rand, QuicWallTime now) const;
curve25519_key_exchange.cc
45
string Curve25519KeyExchange::NewPrivateKey(
QuicRandom
* rand) {
57
KeyExchange* Curve25519KeyExchange::NewKeyPair(
QuicRandom
* rand) const {
quic_crypto_server_config_test.cc
35
QuicRandom
* rand,
148
QuicRandom
* rand =
QuicRandom
::GetInstance();
158
QuicRandom
* rand =
QuicRandom
::GetInstance();
188
: rand_(
QuicRandom
::GetInstance()),
252
QuicRandom
* const rand_;
p256_key_exchange.h
43
virtual KeyExchange* NewKeyPair(
QuicRandom
* rand) const OVERRIDE;
crypto_secret_boxer_test.cc
26
const string box = boxer.Box(
QuicRandom
::GetInstance(), message);
crypto_secret_boxer.cc
34
string CryptoSecretBoxer::Box(
QuicRandom
* rand, StringPiece plaintext) const {
/external/chromium_org/net/quic/
quic_connection_helper.h
28
class
QuicRandom
;
35
QuicRandom
* random_generator);
41
virtual
QuicRandom
* GetRandomGenerator() OVERRIDE;
48
QuicRandom
* random_generator_;
quic_connection_helper.cc
96
QuicRandom
* random_generator)
110
QuicRandom
* QuicConnectionHelper::GetRandomGenerator() {
quic_stream_factory.h
35
class
QuicRandom
;
90
QuicRandom
* random_generator,
195
QuicRandom
* random_generator_;
quic_packet_creator.h
27
class
QuicRandom
;
48
//
QuicRandom
* required for packet entropy.
51
QuicRandom
* random_generator,
/external/chromium_org/net/tools/quic/
quic_epoll_connection_helper.h
24
class
QuicRandom
;
40
virtual
QuicRandom
* GetRandomGenerator() OVERRIDE;
51
QuicRandom
* random_generator_;
quic_epoll_connection_helper.cc
68
random_generator_(
QuicRandom
::GetInstance()) {
78
QuicRandom
* QuicEpollConnectionHelper::GetRandomGenerator() {
quic_server_test.cc
23
: crypto_config_("blah",
QuicRandom
::GetInstance()),
quic_epoll_connection_helper_test.cc
52
QuicRandom
* random = helper_.GetRandomGenerator();
53
EXPECT_EQ(
QuicRandom
::GetInstance(), random);
/external/chromium_org/net/quic/test_tools/
mock_random.h
13
class MockRandom : public
QuicRandom
{
19
//
QuicRandom
:
crypto_test_utils.h
31
class
QuicRandom
;
67
QuicRandom
* rand,
Completed in 200 milliseconds
1
2