summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/nsClientAuthRemember.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /security/manager/ssl/nsClientAuthRemember.h
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/manager/ssl/nsClientAuthRemember.h')
-rw-r--r--security/manager/ssl/nsClientAuthRemember.h98
1 files changed, 98 insertions, 0 deletions
diff --git a/security/manager/ssl/nsClientAuthRemember.h b/security/manager/ssl/nsClientAuthRemember.h
new file mode 100644
index 0000000000..b63c63ec57
--- /dev/null
+++ b/security/manager/ssl/nsClientAuthRemember.h
@@ -0,0 +1,98 @@
+/* -*- 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 __NSCLIENTAUTHREMEMBER_H__
+#define __NSCLIENTAUTHREMEMBER_H__
+
+#include <utility>
+
+#include "mozilla/Attributes.h"
+#include "mozilla/DataStorage.h"
+#include "mozilla/HashFunctions.h"
+#include "mozilla/ReentrantMonitor.h"
+#include "nsIClientAuthRememberService.h"
+#include "nsIObserver.h"
+#include "nsNSSCertificate.h"
+#include "nsString.h"
+#include "nsTHashtable.h"
+#include "nsWeakReference.h"
+
+namespace mozilla {
+class OriginAttributes;
+}
+
+using mozilla::OriginAttributes;
+
+class nsClientAuthRemember final : public nsIClientAuthRememberRecord {
+ public:
+ NS_DECL_THREADSAFE_ISUPPORTS
+ NS_DECL_NSICLIENTAUTHREMEMBERRECORD
+
+ nsClientAuthRemember(const nsACString& aHostName,
+ const OriginAttributes& aOriginAttributes) {
+ mAsciiHost.Assign(aHostName);
+ aOriginAttributes.CreateSuffix(mOriginAttributesSuffix);
+ }
+
+ nsClientAuthRemember(const nsCString& aEntryKey, const nsCString& aDBKey) {
+ if (!aDBKey.Equals(nsClientAuthRemember::SentinelValue)) {
+ mDBKey = aDBKey;
+ }
+
+ size_t field_index = 0;
+ for (const auto& field : aEntryKey.Split(',')) {
+ switch (field_index) {
+ case 0:
+ mAsciiHost.Assign(field);
+ break;
+ case 1:
+ break;
+ case 2:
+ mOriginAttributesSuffix.Assign(field);
+ break;
+ default:
+ break;
+ }
+ field_index++;
+ }
+ }
+
+ nsCString mAsciiHost;
+ nsCString mOriginAttributesSuffix;
+ nsCString mDBKey;
+ static const nsCString SentinelValue;
+
+ protected:
+ ~nsClientAuthRemember() = default;
+};
+
+class nsClientAuthRememberService final : public nsIClientAuthRememberService {
+ public:
+ NS_DECL_THREADSAFE_ISUPPORTS
+ NS_DECL_NSICLIENTAUTHREMEMBERSERVICE
+
+ nsClientAuthRememberService() = default;
+
+ nsresult Init();
+
+ static bool IsPrivateBrowsingKey(const nsCString& entryKey);
+
+ protected:
+ ~nsClientAuthRememberService() = default;
+
+ static mozilla::DataStorageType GetDataStorageType(
+ const OriginAttributes& aOriginAttributes);
+
+ RefPtr<mozilla::DataStorage> mClientAuthRememberList;
+
+ nsresult AddEntryToList(const nsACString& aHost,
+ const OriginAttributes& aOriginAttributes,
+ const nsACString& aDBKey);
+
+ void Migrate();
+};
+
+#endif