2014-01-27 07:36:28 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2016-08-05 18:57:44 +03:00
|
|
|
#ifndef ExtendedValidation_h
|
|
|
|
#define ExtendedValidation_h
|
2014-01-27 07:36:28 +04:00
|
|
|
|
2016-08-05 18:57:44 +03:00
|
|
|
#include "ScopedNSSTypes.h"
|
2014-01-27 07:36:28 +04:00
|
|
|
#include "certt.h"
|
|
|
|
|
2014-05-16 05:59:52 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace pkix {
|
|
|
|
struct CertPolicyId;
|
|
|
|
}
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-01-27 07:36:28 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace psm {
|
|
|
|
|
2018-01-23 21:37:47 +03:00
|
|
|
nsresult LoadExtendedValidationInfo();
|
2017-06-09 02:10:00 +03:00
|
|
|
|
2016-12-14 15:10:25 +03:00
|
|
|
/**
|
|
|
|
* Finds the first policy OID in the given cert that is known to be an EV policy
|
|
|
|
* OID.
|
|
|
|
*
|
|
|
|
* @param cert
|
|
|
|
* The cert to find the first EV policy of.
|
|
|
|
* @param policy
|
|
|
|
* The found policy.
|
|
|
|
* @param policyOidTag
|
|
|
|
* The OID tag of the found policy.
|
|
|
|
* @return true if a suitable policy was found, false otherwise.
|
|
|
|
*/
|
|
|
|
bool GetFirstEVPolicy(CERTCertificate& cert,
|
|
|
|
/*out*/ mozilla::pkix::CertPolicyId& policy,
|
|
|
|
/*out*/ SECOidTag& policyOidTag);
|
2014-02-24 10:15:53 +04:00
|
|
|
|
|
|
|
// CertIsAuthoritativeForEVPolicy does NOT evaluate whether the cert is trusted
|
|
|
|
// or distrusted.
|
2016-08-05 18:57:44 +03:00
|
|
|
bool CertIsAuthoritativeForEVPolicy(const UniqueCERTCertificate& cert,
|
2014-05-16 05:59:52 +04:00
|
|
|
const mozilla::pkix::CertPolicyId& policy);
|
2014-02-24 10:15:53 +04:00
|
|
|
|
2014-01-27 07:36:28 +04:00
|
|
|
} // namespace psm
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2016-08-05 18:57:44 +03:00
|
|
|
#endif // ExtendedValidation_h
|