mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
676eaf13b4
--HG-- rename : security/insanity/include/insanity/ScopedPtr.h => security/pkix/include/pkix/ScopedPtr.h rename : security/insanity/include/insanity/bind.h => security/pkix/include/pkix/bind.h rename : security/insanity/include/insanity/nullptr.h => security/pkix/include/pkix/nullptr.h rename : security/insanity/include/insanity/pkix.h => security/pkix/include/pkix/pkix.h rename : security/insanity/include/insanity/pkixtypes.h => security/pkix/include/pkix/pkixtypes.h rename : security/insanity/lib/pkixbind.cpp => security/pkix/lib/pkixbind.cpp rename : security/insanity/lib/pkixbuild.cpp => security/pkix/lib/pkixbuild.cpp rename : security/insanity/lib/pkixcheck.cpp => security/pkix/lib/pkixcheck.cpp rename : security/insanity/lib/pkixcheck.h => security/pkix/lib/pkixcheck.h rename : security/insanity/lib/pkixder.cpp => security/pkix/lib/pkixder.cpp rename : security/insanity/lib/pkixder.h => security/pkix/lib/pkixder.h rename : security/insanity/lib/pkixkey.cpp => security/pkix/lib/pkixkey.cpp rename : security/insanity/lib/pkixocsp.cpp => security/pkix/lib/pkixocsp.cpp rename : security/insanity/lib/pkixutil.h => security/pkix/lib/pkixutil.h rename : security/insanity/moz.build => security/pkix/moz.build rename : security/insanity/test/lib/moz.build => security/pkix/test/lib/moz.build rename : security/insanity/test/lib/pkixtestutil.cpp => security/pkix/test/lib/pkixtestutil.cpp rename : security/insanity/test/lib/pkixtestutil.h => security/pkix/test/lib/pkixtestutil.h
95 lines
3.4 KiB
C++
95 lines
3.4 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__NSSCertDBTrustDomain_h
|
|
#define mozilla_psm__NSSCertDBTrustDomain_h
|
|
|
|
#include "pkix/pkixtypes.h"
|
|
#include "secmodt.h"
|
|
#include "CertVerifier.h"
|
|
|
|
namespace mozilla { namespace psm {
|
|
|
|
SECStatus InitializeNSS(const char* dir, bool readOnly);
|
|
|
|
void DisableMD5();
|
|
|
|
extern const char BUILTIN_ROOTS_MODULE_DEFAULT_NAME[];
|
|
|
|
void PORT_Free_string(char* str);
|
|
|
|
// The dir parameter is the path to the directory containing the NSS builtin
|
|
// roots module. Usually this is the same as the path to the other NSS shared
|
|
// libraries. If it is null then the (library) path will be searched.
|
|
//
|
|
// The modNameUTF8 parameter should usually be
|
|
// BUILTIN_ROOTS_MODULE_DEFAULT_NAME.
|
|
SECStatus LoadLoadableRoots(/*optional*/ const char* dir,
|
|
const char* modNameUTF8);
|
|
|
|
void UnloadLoadableRoots(const char* modNameUTF8);
|
|
|
|
// Controls the OCSP fetching behavior of the classic verification mode. In the
|
|
// classic mode, the OCSP fetching behavior is set globally instead of per
|
|
// validation.
|
|
void
|
|
SetClassicOCSPBehavior(CertVerifier::ocsp_download_config enabled,
|
|
CertVerifier::ocsp_strict_config strict,
|
|
CertVerifier::ocsp_get_config get);
|
|
|
|
// Caller must free the result with PR_Free
|
|
char* DefaultServerNicknameForCert(CERTCertificate* cert);
|
|
|
|
void SaveIntermediateCerts(const mozilla::pkix::ScopedCERTCertList& certList);
|
|
|
|
class NSSCertDBTrustDomain : public mozilla::pkix::TrustDomain
|
|
{
|
|
|
|
public:
|
|
enum OCSPFetching {
|
|
NeverFetchOCSP = 0,
|
|
FetchOCSPForDVSoftFail = 1,
|
|
FetchOCSPForDVHardFail = 2,
|
|
FetchOCSPForEV = 3,
|
|
LocalOnlyOCSPForEV = 4,
|
|
};
|
|
NSSCertDBTrustDomain(SECTrustType certDBTrustType, OCSPFetching ocspFetching,
|
|
OCSPCache& ocspCache, void* pinArg);
|
|
|
|
virtual SECStatus FindPotentialIssuers(
|
|
const SECItem* encodedIssuerName,
|
|
PRTime time,
|
|
/*out*/ mozilla::pkix::ScopedCERTCertList& results);
|
|
|
|
virtual SECStatus GetCertTrust(mozilla::pkix::EndEntityOrCA endEntityOrCA,
|
|
SECOidTag policy,
|
|
const CERTCertificate* candidateCert,
|
|
/*out*/ TrustLevel* trustLevel);
|
|
|
|
virtual SECStatus VerifySignedData(const CERTSignedData* signedData,
|
|
const CERTCertificate* cert);
|
|
|
|
virtual SECStatus CheckRevocation(mozilla::pkix::EndEntityOrCA endEntityOrCA,
|
|
const CERTCertificate* cert,
|
|
/*const*/ CERTCertificate* issuerCert,
|
|
PRTime time,
|
|
/*optional*/ const SECItem* stapledOCSPResponse);
|
|
|
|
private:
|
|
SECStatus VerifyAndMaybeCacheEncodedOCSPResponse(
|
|
const CERTCertificate* cert, CERTCertificate* issuerCert, PRTime time,
|
|
const SECItem* encodedResponse);
|
|
|
|
const SECTrustType mCertDBTrustType;
|
|
const OCSPFetching mOCSPFetching;
|
|
OCSPCache& mOCSPCache; // non-owning!
|
|
void* mPinArg; // non-owning!
|
|
};
|
|
|
|
} } // namespace mozilla::psm
|
|
|
|
#endif // mozilla_psm__NSSCertDBTrustDomain_h
|