mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-13 23:17:57 +00:00
c162caba82
--HG-- extra : rebase_source : 94c49062ae3ddf755651f151e2d648543b10e1ad extra : histedit_source : a7377bf1d9adb62e1c584e2adeb793aa074245fb
48 lines
1.8 KiB
C++
48 lines
1.8 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_psm_AppsTrustDomain_h
|
|
#define mozilla_psm_AppsTrustDomain_h
|
|
|
|
#include "pkix/pkixtypes.h"
|
|
#include "nsDebug.h"
|
|
#include "nsIX509CertDB.h"
|
|
#include "ScopedNSSTypes.h"
|
|
|
|
namespace mozilla { namespace psm {
|
|
|
|
class AppTrustDomain MOZ_FINAL : public mozilla::pkix::TrustDomain
|
|
{
|
|
public:
|
|
AppTrustDomain(ScopedCERTCertList&, void* pinArg);
|
|
|
|
SECStatus SetTrustedRoot(AppTrustedRoot trustedRoot);
|
|
|
|
SECStatus GetCertTrust(mozilla::pkix::EndEntityOrCA endEntityOrCA,
|
|
const mozilla::pkix::CertPolicyId& policy,
|
|
const SECItem& candidateCertDER,
|
|
/*out*/ mozilla::pkix::TrustLevel* trustLevel) MOZ_OVERRIDE;
|
|
SECStatus FindIssuer(const SECItem& encodedIssuerName,
|
|
IssuerChecker& checker, PRTime time) MOZ_OVERRIDE;
|
|
SECStatus VerifySignedData(
|
|
const mozilla::pkix::SignedDataWithSignature& signedData,
|
|
const SECItem& subjectPublicKeyInfo) MOZ_OVERRIDE;
|
|
SECStatus CheckRevocation(mozilla::pkix::EndEntityOrCA endEntityOrCA,
|
|
const mozilla::pkix::CertID& certID, PRTime time,
|
|
/*optional*/ const SECItem* stapledOCSPresponse,
|
|
/*optional*/ const SECItem* aiaExtension);
|
|
SECStatus IsChainValid(const mozilla::pkix::DERArray& certChain);
|
|
|
|
private:
|
|
/*out*/ ScopedCERTCertList& mCertChain;
|
|
void* mPinArg; // non-owning!
|
|
ScopedCERTCertificate mTrustedRoot;
|
|
};
|
|
|
|
} } // namespace mozilla::psm
|
|
|
|
#endif // mozilla_psm_AppsTrustDomain_h
|