Bumping manifests a=b2g-bump
[gecko.git] / security / certverifier / ExtendedValidation.h
blob8e857311d2ec4a29bc82c2766a5967e2f1ea4018
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_psm_ExtendedValidation_h
7 #define mozilla_psm_ExtendedValidation_h
9 #include "certt.h"
10 #include "prtypes.h"
12 namespace mozilla { namespace pkix { struct CertPolicyId; } }
14 namespace mozilla { namespace psm {
16 #ifndef MOZ_NO_EV_CERTS
17 void EnsureIdentityInfoLoaded();
18 void CleanupIdentityInfo();
19 SECStatus GetFirstEVPolicy(CERTCertificate* cert,
20 /*out*/ mozilla::pkix::CertPolicyId& policy,
21 /*out*/ SECOidTag& policyOidTag);
23 // CertIsAuthoritativeForEVPolicy does NOT evaluate whether the cert is trusted
24 // or distrusted.
25 bool CertIsAuthoritativeForEVPolicy(const CERTCertificate* cert,
26 const mozilla::pkix::CertPolicyId& policy);
27 #endif
29 } } // namespace mozilla::psm
31 #endif // mozilla_psm_ExtendedValidation_h