From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../manager/ssl/SelectTLSClientAuthCertParent.h | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 security/manager/ssl/SelectTLSClientAuthCertParent.h (limited to 'security/manager/ssl/SelectTLSClientAuthCertParent.h') diff --git a/security/manager/ssl/SelectTLSClientAuthCertParent.h b/security/manager/ssl/SelectTLSClientAuthCertParent.h new file mode 100644 index 0000000000..5dede41091 --- /dev/null +++ b/security/manager/ssl/SelectTLSClientAuthCertParent.h @@ -0,0 +1,53 @@ +/* -*- 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 SECURITY_MANAGER_SSL_SELECTTLSCLIENTAUTHCERTPARENT_H_ +#define SECURITY_MANAGER_SSL_SELECTTLSCLIENTAUTHCERTPARENT_H_ + +#include "mozilla/OriginAttributes.h" +#include "mozilla/psm/PSelectTLSClientAuthCertParent.h" + +namespace mozilla { +namespace psm { + +// Parent process component of the SelectTLSClientAuthCert IPC protocol. When +// the socket process encounters a TLS server that requests a client +// authentication certificate, Dispatch will be called via IPC with the +// information associated with that connection. That function dispatches an +// event to the main thread that determines what certificate to select, if any +// (usually by opening a dialog for the user to interact with). When a +// certificate (or no certificate) has been selected, TLSClientAuthCertSelected +// will be called on the IPC thread, which will cause +// SelectTLSClientAuthCertChild::RecvTLSClientAuthCertSelected to be called via +// IPC, which will get the appropriate information to NSS to continue the +// connection. +class SelectTLSClientAuthCertParent : public PSelectTLSClientAuthCertParent { + public: + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(SelectTLSClientAuthCertParent, override) + + SelectTLSClientAuthCertParent() = default; + + bool Dispatch(const nsACString& aHostName, + const OriginAttributes& aOriginAttributes, const int32_t& aPort, + const uint32_t& aProviderFlags, + const uint32_t& aProviderTlsFlags, + const ByteArray& aServerCertBytes, + nsTArray&& aCANames); + + void TLSClientAuthCertSelected( + const nsTArray& aSelectedCertBytes, + nsTArray>&& aSelectedCertChainBytes); + + private: + ~SelectTLSClientAuthCertParent() = default; + + void ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason aWhy) override; +}; + +} // namespace psm +} // namespace mozilla + +#endif // SECURITY_MANAGER_SSL_SELECTTLSCLIENTAUTHCERTPARENT_H_ -- cgit v1.2.3