| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // This protobuffer is intended to store reports from Chrome users of | 5 // This protobuffer is intended to store reports from Chrome users of |
| 6 // certificate errors. A report will be sent from Chrome when it gets | 6 // certificate errors. A report will be sent from Chrome when it gets |
| 7 // e.g. a certificate for google.com that chains up to a root CA not expected by | 7 // e.g. a certificate for google.com that chains up to a root CA not expected by |
| 8 // Chrome for that origin, such as DigiNotar (compromised in July 2011), or | 8 // Chrome for that origin, such as DigiNotar (compromised in July 2011), or |
| 9 // other pinning errors such as a blacklisted cert in the chain, or | 9 // other pinning errors such as a blacklisted cert in the chain, or |
| 10 // (when opted in) other certificate validation errors like an expired | 10 // (when opted in) other certificate validation errors like an expired |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 119 |
| 120 // True if the certificate was rooted at a standard CA root ,as opposed to a | 120 // True if the certificate was rooted at a standard CA root ,as opposed to a |
| 121 // user-installed root, but is only meaningful if the underlying certificate | 121 // user-installed root, but is only meaningful if the underlying certificate |
| 122 // validation library built a trusted chain (i.e. the Chrome net stack set the | 122 // validation library built a trusted chain (i.e. the Chrome net stack set the |
| 123 // error, not the library). | 123 // error, not the library). |
| 124 optional bool is_issued_by_known_root = 9; | 124 optional bool is_issued_by_known_root = 9; |
| 125 | 125 |
| 126 // Information about features that were enabled or disabled for the | 126 // Information about features that were enabled or disabled for the |
| 127 // user that might affect certificate validation. | 127 // user that might affect certificate validation. |
| 128 optional CertLoggerFeaturesInfo features_info = 10; | 128 optional CertLoggerFeaturesInfo features_info = 10; |
| 129 |
| 130 // False when the report is attempted to be uploaded for the first time. True |
| 131 // in all other uploads. |
| 132 optional bool is_retry_upload = 11; |
| 129 }; | 133 }; |
| OLD | NEW |