OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/quic/core/crypto/quic_crypto_server_config.h" | 5 #include "net/quic/core/crypto/quic_crypto_server_config.h" |
6 | 6 |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <memory> | 10 #include <memory> |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "net/quic/core/crypto/crypto_utils.h" | 23 #include "net/quic/core/crypto/crypto_utils.h" |
24 #include "net/quic/core/crypto/curve25519_key_exchange.h" | 24 #include "net/quic/core/crypto/curve25519_key_exchange.h" |
25 #include "net/quic/core/crypto/ephemeral_key_source.h" | 25 #include "net/quic/core/crypto/ephemeral_key_source.h" |
26 #include "net/quic/core/crypto/key_exchange.h" | 26 #include "net/quic/core/crypto/key_exchange.h" |
27 #include "net/quic/core/crypto/p256_key_exchange.h" | 27 #include "net/quic/core/crypto/p256_key_exchange.h" |
28 #include "net/quic/core/crypto/proof_source.h" | 28 #include "net/quic/core/crypto/proof_source.h" |
29 #include "net/quic/core/crypto/quic_decrypter.h" | 29 #include "net/quic/core/crypto/quic_decrypter.h" |
30 #include "net/quic/core/crypto/quic_encrypter.h" | 30 #include "net/quic/core/crypto/quic_encrypter.h" |
31 #include "net/quic/core/crypto/quic_random.h" | 31 #include "net/quic/core/crypto/quic_random.h" |
32 #include "net/quic/core/proto/source_address_token.pb.h" | 32 #include "net/quic/core/proto/source_address_token.pb.h" |
33 #include "net/quic/core/quic_bug_tracker.h" | |
34 #include "net/quic/core/quic_flags.h" | 33 #include "net/quic/core/quic_flags.h" |
35 #include "net/quic/core/quic_packets.h" | 34 #include "net/quic/core/quic_packets.h" |
36 #include "net/quic/core/quic_socket_address_coder.h" | 35 #include "net/quic/core/quic_socket_address_coder.h" |
37 #include "net/quic/core/quic_utils.h" | 36 #include "net/quic/core/quic_utils.h" |
| 37 #include "net/quic/platform/api/quic_bug_tracker.h" |
38 #include "net/quic/platform/api/quic_clock.h" | 38 #include "net/quic/platform/api/quic_clock.h" |
39 #include "net/quic/platform/api/quic_reference_counted.h" | 39 #include "net/quic/platform/api/quic_reference_counted.h" |
40 #include "net/quic/platform/api/quic_text_utils.h" | 40 #include "net/quic/platform/api/quic_text_utils.h" |
41 | 41 |
42 using base::StringPiece; | 42 using base::StringPiece; |
43 using crypto::SecureHash; | 43 using crypto::SecureHash; |
44 using std::string; | 44 using std::string; |
45 | 45 |
46 namespace net { | 46 namespace net { |
47 | 47 |
(...skipping 1977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2025 expiry_time(QuicWallTime::Zero()), | 2025 expiry_time(QuicWallTime::Zero()), |
2026 priority(0), | 2026 priority(0), |
2027 source_address_token_boxer(nullptr) {} | 2027 source_address_token_boxer(nullptr) {} |
2028 | 2028 |
2029 QuicCryptoServerConfig::Config::~Config() {} | 2029 QuicCryptoServerConfig::Config::~Config() {} |
2030 | 2030 |
2031 QuicSignedServerConfig::QuicSignedServerConfig() {} | 2031 QuicSignedServerConfig::QuicSignedServerConfig() {} |
2032 QuicSignedServerConfig::~QuicSignedServerConfig() {} | 2032 QuicSignedServerConfig::~QuicSignedServerConfig() {} |
2033 | 2033 |
2034 } // namespace net | 2034 } // namespace net |
OLD | NEW |