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/crypto/quic_crypto_server_config.h" | 5 #include "net/quic/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 | 11 |
11 #include "base/macros.h" | 12 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
13 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
14 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
15 #include "crypto/hkdf.h" | 16 #include "crypto/hkdf.h" |
16 #include "crypto/secure_hash.h" | 17 #include "crypto/secure_hash.h" |
17 #include "net/base/ip_address.h" | 18 #include "net/base/ip_address.h" |
18 #include "net/quic/crypto/aes_128_gcm_12_decrypter.h" | 19 #include "net/quic/crypto/aes_128_gcm_12_decrypter.h" |
19 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" | 20 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" |
(...skipping 1798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1818 priority(0), | 1819 priority(0), |
1819 source_address_token_boxer(nullptr) {} | 1820 source_address_token_boxer(nullptr) {} |
1820 | 1821 |
1821 QuicCryptoServerConfig::Config::~Config() { | 1822 QuicCryptoServerConfig::Config::~Config() { |
1822 STLDeleteElements(&key_exchanges); | 1823 STLDeleteElements(&key_exchanges); |
1823 } | 1824 } |
1824 | 1825 |
1825 QuicCryptoProof::QuicCryptoProof() {} | 1826 QuicCryptoProof::QuicCryptoProof() {} |
1826 QuicCryptoProof::~QuicCryptoProof() {} | 1827 QuicCryptoProof::~QuicCryptoProof() {} |
1827 } // namespace net | 1828 } // namespace net |
OLD | NEW |