mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
c510e4037b
This patch does the following: - Implements nsNSSShutDownObject. - Replaces more raw pointers with smart pointers. - Fixes other misc issues. MozReview-Commit-ID: HulWdonEbP8 --HG-- extra : transplant_source : %DC%27%14%AE%28%A2F%80%1F%2C%83L%D3h%A2%C7k%F0%1C%2B
48 lines
1.3 KiB
C++
48 lines
1.3 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 nsDataSignatureVerifier_h
|
|
#define nsDataSignatureVerifier_h
|
|
|
|
#include "certt.h"
|
|
#include "nsIDataSignatureVerifier.h"
|
|
#include "nsNSSShutDown.h"
|
|
|
|
#define NS_DATASIGNATUREVERIFIER_CID \
|
|
{ 0x296d76aa, 0x275b, 0x4f3c, \
|
|
{ 0xaf, 0x8a, 0x30, 0xa4, 0x02, 0x6c, 0x18, 0xfc } }
|
|
#define NS_DATASIGNATUREVERIFIER_CONTRACTID \
|
|
"@mozilla.org/security/datasignatureverifier;1"
|
|
|
|
class nsDataSignatureVerifier final : public nsIDataSignatureVerifier
|
|
, public nsNSSShutDownObject
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIDATASIGNATUREVERIFIER
|
|
|
|
nsDataSignatureVerifier()
|
|
{
|
|
}
|
|
|
|
private:
|
|
~nsDataSignatureVerifier();
|
|
|
|
// Nothing to release.
|
|
virtual void virtualDestroyNSSReference() override {}
|
|
};
|
|
|
|
namespace mozilla {
|
|
|
|
nsresult VerifyCMSDetachedSignatureIncludingCertificate(
|
|
const SECItem& buffer, const SECItem& detachedDigest,
|
|
nsresult (*verifyCertificate)(CERTCertificate* cert, void* context,
|
|
void* pinArg),
|
|
void* verifyCertificateContext, void* pinArg,
|
|
const nsNSSShutDownPreventionLock& proofOfLock);
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // nsDataSignatureVerifier_h
|