mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
c17f3a2733
MozReview-Commit-ID: 88JhIU1pUji --HG-- rename : security/manager/ssl/tests/unit/test_cert_eku/ee-int-nsSGC.pem.certspec => security/manager/ssl/tests/unit/test_cert_eku/ee-int-nsSGC-recent.pem.certspec rename : security/manager/ssl/tests/unit/test_cert_eku/int-nsSGC.pem.certspec => security/manager/ssl/tests/unit/test_cert_eku/int-nsSGC-recent.pem.certspec extra : rebase_source : 2f6251679a6f31cccb6d88bb51c567de9cc9bc76
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
/* 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 SharedCertVerifier_h
|
|
#define SharedCertVerifier_h
|
|
|
|
#include "CertVerifier.h"
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
namespace mozilla { namespace psm {
|
|
|
|
class SharedCertVerifier : public mozilla::psm::CertVerifier
|
|
{
|
|
protected:
|
|
~SharedCertVerifier();
|
|
|
|
public:
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(SharedCertVerifier)
|
|
|
|
SharedCertVerifier(OcspDownloadConfig odc, OcspStrictConfig osc,
|
|
OcspGetConfig ogc, uint32_t certShortLifetimeInDays,
|
|
PinningMode pinningMode, SHA1Mode sha1Mode,
|
|
BRNameMatchingPolicy::Mode nameMatchingMode,
|
|
NetscapeStepUpPolicy netscapeStepUpPolicy)
|
|
: mozilla::psm::CertVerifier(odc, osc, ogc, certShortLifetimeInDays,
|
|
pinningMode, sha1Mode, nameMatchingMode,
|
|
netscapeStepUpPolicy)
|
|
{
|
|
}
|
|
};
|
|
|
|
} } // namespace mozilla::psm
|
|
|
|
#endif // SharedCertVerifier_h
|