| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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 | 5 |
| 6 /* This file contains common certificates. It's designed to be #included in | 6 /* This file contains common certificates. It's designed to be #included in |
| 7 * another file, in a namespace. */ | 7 * another file, in a namespace. */ |
| 8 | 8 |
| 9 #include "net/quic/crypto/common_cert_set_1_50.inc" | 9 #include "net/quic/crypto/common_cert_set_0a.inc" |
| 10 #include "net/quic/crypto/common_cert_set_51_100.inc" | 10 #include "net/quic/crypto/common_cert_set_0b.inc" |
| 11 | 11 |
| 12 static const size_t kNumCerts = 102; | 12 static const size_t kNumCerts = 102; |
| 13 static const unsigned char* const kCerts[] = { | 13 static const unsigned char* const kCerts[] = { |
| 14 kDERCert0, | 14 kDERCert0, |
| 15 kDERCert1, | 15 kDERCert1, |
| 16 kDERCert2, | 16 kDERCert2, |
| 17 kDERCert3, | 17 kDERCert3, |
| 18 kDERCert4, | 18 kDERCert4, |
| 19 kDERCert5, | 19 kDERCert5, |
| 20 kDERCert6, | 20 kDERCert6, |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 1584, | 214 1584, |
| 215 1592, | 215 1592, |
| 216 1592, | 216 1592, |
| 217 1625, | 217 1625, |
| 218 1628, | 218 1628, |
| 219 1767, | 219 1767, |
| 220 1770, | 220 1770, |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 static const uint64 kHash = GG_UINT64_C(0xc9fef74053f99f39); | 223 static const uint64 kHash = GG_UINT64_C(0xc9fef74053f99f39); |
| OLD | NEW |