| 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 <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include "net/quic/crypto/common_cert_set_1a.inc" | 11 #include "net/quic/core/crypto/common_cert_set_1a.inc" |
| 12 #include "net/quic/crypto/common_cert_set_1b.inc" | 12 #include "net/quic/core/crypto/common_cert_set_1b.inc" |
| 13 | 13 |
| 14 static const size_t kNumCerts = 62; | 14 static const size_t kNumCerts = 62; |
| 15 static const unsigned char* const kCerts[] = { | 15 static const unsigned char* const kCerts[] = { |
| 16 kDERCert0, | 16 kDERCert0, |
| 17 kDERCert1, | 17 kDERCert1, |
| 18 kDERCert2, | 18 kDERCert2, |
| 19 kDERCert3, | 19 kDERCert3, |
| 20 kDERCert4, | 20 kDERCert4, |
| 21 kDERCert5, | 21 kDERCert5, |
| 22 kDERCert6, | 22 kDERCert6, |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 1520, | 136 1520, |
| 137 1548, | 137 1548, |
| 138 1570, | 138 1570, |
| 139 1581, | 139 1581, |
| 140 1628, | 140 1628, |
| 141 1712, | 141 1712, |
| 142 1770, | 142 1770, |
| 143 }; | 143 }; |
| 144 | 144 |
| 145 static const uint64_t kHash = UINT64_C(0xff715ce4e7e9267b); | 145 static const uint64_t kHash = UINT64_C(0xff715ce4e7e9267b); |
| OLD | NEW |