summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/nsPK11TokenDB.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /security/manager/ssl/nsPK11TokenDB.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'security/manager/ssl/nsPK11TokenDB.h')
-rw-r--r--security/manager/ssl/nsPK11TokenDB.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/security/manager/ssl/nsPK11TokenDB.h b/security/manager/ssl/nsPK11TokenDB.h
new file mode 100644
index 000000000..1d29e592f
--- /dev/null
+++ b/security/manager/ssl/nsPK11TokenDB.h
@@ -0,0 +1,71 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
+ *
+ * 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 nsPK11TokenDB_h
+#define nsPK11TokenDB_h
+
+#include "nsCOMPtr.h"
+#include "nsIPK11Token.h"
+#include "nsIPK11TokenDB.h"
+#include "nsISupports.h"
+#include "nsNSSHelper.h"
+#include "nsNSSShutDown.h"
+#include "nsString.h"
+#include "pk11func.h"
+#include "ScopedNSSTypes.h"
+
+class nsPK11Token : public nsIPK11Token,
+ public nsNSSShutDownObject
+{
+public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIPK11TOKEN
+
+ explicit nsPK11Token(PK11SlotInfo *slot);
+
+protected:
+ virtual ~nsPK11Token();
+
+private:
+ friend class nsPK11TokenDB;
+ nsresult refreshTokenInfo(const nsNSSShutDownPreventionLock& proofOfLock);
+
+ nsCString mTokenName;
+ nsCString mTokenLabel;
+ nsCString mTokenManufacturerID;
+ nsCString mTokenHWVersion;
+ nsCString mTokenFWVersion;
+ nsCString mTokenSerialNum;
+ mozilla::UniquePK11SlotInfo mSlot;
+ int mSeries;
+ nsCOMPtr<nsIInterfaceRequestor> mUIContext;
+ virtual void virtualDestroyNSSReference() override;
+ void destructorSafeDestroyNSSReference();
+ nsresult GetAttributeHelper(const nsACString& attribute,
+ /*out*/ nsACString& xpcomOutParam);
+};
+
+class nsPK11TokenDB : public nsIPK11TokenDB
+ , public nsNSSShutDownObject
+{
+public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIPK11TOKENDB
+
+ nsPK11TokenDB();
+
+protected:
+ virtual ~nsPK11TokenDB();
+
+ // Nothing to release.
+ virtual void virtualDestroyNSSReference() override {}
+};
+
+#define NS_PK11TOKENDB_CID \
+{ 0xb084a2ce, 0x1dd1, 0x11b2, \
+ { 0xbf, 0x10, 0x83, 0x24, 0xf8, 0xe0, 0x65, 0xcc }}
+
+#endif // nsPK11TokenDB_h