| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // TODO(eroman): Because VerifySignedData() is only implemented for BoringSSL | |
| 6 // these tests also depend on BoringSSL. | |
| 7 #if defined(USE_OPENSSL) | |
| 8 | |
| 9 #include "net/cert/internal/verify_certificate_chain.h" | 5 #include "net/cert/internal/verify_certificate_chain.h" |
| 10 | 6 |
| 11 #include "net/cert/internal/parse_certificate.h" | 7 #include "net/cert/internal/parse_certificate.h" |
| 12 #include "net/cert/internal/signature_policy.h" | 8 #include "net/cert/internal/signature_policy.h" |
| 13 #include "net/der/input.h" | 9 #include "net/der/input.h" |
| 14 | 10 |
| 15 // Disable tests that require DSA signatures (DSA signatures are intentionally | 11 // Disable tests that require DSA signatures (DSA signatures are intentionally |
| 16 // unsupported). Custom versions of the DSA tests are defined below which expect | 12 // unsupported). Custom versions of the DSA tests are defined below which expect |
| 17 // verification to fail. | 13 // verification to fail. |
| 18 #define Section1ValidDSASignaturesTest4 DISABLED_Section1ValidDSASignaturesTest4 | 14 #define Section1ValidDSASignaturesTest4 DISABLED_Section1ValidDSASignaturesTest4 |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 208 |
| 213 // TODO(mattm): CRL support: PkitsTest04BasicCertificateRevocationTests, | 209 // TODO(mattm): CRL support: PkitsTest04BasicCertificateRevocationTests, |
| 214 // PkitsTest05VerifyingPathswithSelfIssuedCertificates, | 210 // PkitsTest05VerifyingPathswithSelfIssuedCertificates, |
| 215 // PkitsTest14DistributionPoints, PkitsTest15DeltaCRLs | 211 // PkitsTest14DistributionPoints, PkitsTest15DeltaCRLs |
| 216 | 212 |
| 217 // TODO(mattm): Certificate Policies support: PkitsTest08CertificatePolicies, | 213 // TODO(mattm): Certificate Policies support: PkitsTest08CertificatePolicies, |
| 218 // PkitsTest09RequireExplicitPolicy PkitsTest10PolicyMappings, | 214 // PkitsTest09RequireExplicitPolicy PkitsTest10PolicyMappings, |
| 219 // PkitsTest11InhibitPolicyMapping, PkitsTest12InhibitAnyPolicy | 215 // PkitsTest11InhibitPolicyMapping, PkitsTest12InhibitAnyPolicy |
| 220 | 216 |
| 221 } // namespace net | 217 } // namespace net |
| 222 | |
| 223 #endif // USE_OPENSSL | |
| OLD | NEW |