| 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_1_50.inc" |
| 10 #include "net/quic/crypto/common_cert_set_51_100.inc" | 10 #include "net/quic/crypto/common_cert_set_51_100.inc" |
| 11 | 11 |
| 12 static const size_t kNumCerts = 101; | 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, |
| 21 kDERCert7, | 21 kDERCert7, |
| 22 kDERCert8, | 22 kDERCert8, |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 kDERCert91, | 105 kDERCert91, |
| 106 kDERCert92, | 106 kDERCert92, |
| 107 kDERCert93, | 107 kDERCert93, |
| 108 kDERCert94, | 108 kDERCert94, |
| 109 kDERCert95, | 109 kDERCert95, |
| 110 kDERCert96, | 110 kDERCert96, |
| 111 kDERCert97, | 111 kDERCert97, |
| 112 kDERCert98, | 112 kDERCert98, |
| 113 kDERCert99, | 113 kDERCert99, |
| 114 kDERCert100, | 114 kDERCert100, |
| 115 kDERCert101, |
| 115 }; | 116 }; |
| 116 | 117 |
| 117 static const size_t kLens[] = { | 118 static const size_t kLens[] = { |
| 118 692, | 119 692, |
| 119 897, | 120 897, |
| 120 903, | 121 903, |
| 121 911, | 122 911, |
| 122 911, | 123 911, |
| 123 957, | 124 957, |
| 124 971, | 125 971, |
| 125 985, | 126 985, |
| 126 989, | 127 989, |
| 127 1022, | 128 1022, |
| 129 1032, |
| 128 1049, | 130 1049, |
| 129 1055, | 131 1055, |
| 130 1071, | 132 1071, |
| 131 1071, | 133 1071, |
| 132 1073, | 134 1073, |
| 133 1075, | 135 1075, |
| 134 1078, | 136 1078, |
| 135 1080, | 137 1080, |
| 136 1082, | 138 1082, |
| 137 1082, | 139 1082, |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 1581, | 213 1581, |
| 212 1584, | 214 1584, |
| 213 1592, | 215 1592, |
| 214 1592, | 216 1592, |
| 215 1625, | 217 1625, |
| 216 1628, | 218 1628, |
| 217 1767, | 219 1767, |
| 218 1770, | 220 1770, |
| 219 }; | 221 }; |
| 220 | 222 |
| 221 static const uint64 kHash = GG_UINT64_C(0xde8086f914a3af54); | 223 static const uint64 kHash = GG_UINT64_C(0xc9fef74053f99f39); |
| OLD | NEW |