Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / security / manager / ssl / PKCS11ModuleDB.h
blob2fc0a557140baecdbed81b49788fdd6282911cb4
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef PKCS11ModuleDB_h
7 #define PKCS11ModuleDB_h
9 #include "nsIPKCS11ModuleDB.h"
10 #include "nsTLiteralString.h"
12 namespace mozilla {
13 namespace psm {
15 #define NS_PKCS11MODULEDB_CID \
16 { \
17 0xff9fbcd7, 0x9517, 0x4334, { \
18 0xb9, 0x7a, 0xce, 0xed, 0x78, 0x90, 0x99, 0x74 \
19 } \
22 class PKCS11ModuleDB : public nsIPKCS11ModuleDB {
23 public:
24 PKCS11ModuleDB() = default;
26 NS_DECL_ISUPPORTS
27 NS_DECL_NSIPKCS11MODULEDB
29 protected:
30 virtual ~PKCS11ModuleDB() = default;
33 const nsLiteralCString kIPCClientCertsModuleName("IPC Client Cert Module");
34 const nsLiteralCString kNSSInternalModuleName("NSS Internal PKCS #11 Module");
35 const nsLiteralCString kOSClientCertsModuleName("OS Client Cert Module");
36 const nsLiteralCString kRootModuleName("Builtin Roots Module");
38 void CollectThirdPartyPKCS11ModuleTelemetry();
40 } // namespace psm
41 } // namespace mozilla
43 #endif // PKCS11ModuleDB_h