summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2022-11-17 18:20:25 +0100
committerMichal Klocek <michal.klocek@qt.io>2022-11-22 08:24:44 +0100
commit0902e992ef63df5fe001e4865ebec4e11141f0a3 (patch)
tree364d9e40ee2c002b892cef2174743d69ab32a51a
parent247e598a74b65ec82e10c03243a36038c13361f0 (diff)
Doc: Emphasize in-memory and system stored client certificates
Task-number: QTBUG-106497 Pick-to: 6.4 Change-Id: If03062a5ab6cf5f6d14329637f44b5ea7675f65a Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
-rw-r--r--src/core/doc/src/qtwebengine-features.qdoc12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/doc/src/qtwebengine-features.qdoc b/src/core/doc/src/qtwebengine-features.qdoc
index 4250d92a6..310fe4d92 100644
--- a/src/core/doc/src/qtwebengine-features.qdoc
+++ b/src/core/doc/src/qtwebengine-features.qdoc
@@ -125,10 +125,12 @@
recommended to always give the user a choice before uniquely identifying them
to a remote server.
- To manage a client certificate in-memory store, the QWebEngineClientCertificateStore
- instance can be obtained with the QWebEngineProfile::clientCertificateStore() method.
- An application can use this class to add a new certificate with a
- QWebEngineClientCertificateStore::add() call.
+ In addition to the client certificate stored in system settings, \QWE offers also
+ the in-memory store. The QWebEngineClientCertificateStore instance can be obtained with
+ the QWebEngineProfile::clientCertificateStore() method. An application can use this
+ class to add a new certificate with a QWebEngineClientCertificateStore::add() call.
+ Note that during the \c selectClientCertificate calls, \QWE lists both system
+ and in-memory stored clients certificates.
\section1 Custom Schemes
@@ -137,7 +139,7 @@
Custom schemes can be used to implement alternative network protocols with
all the usual web security policies, privileged internal schemes for
- displaying user interface compoments or debugging information, sandboxed
+ displaying user interface components or debugging information, sandboxed
schemes with extra restrictions, and so on.
For more information, see \l QWebEngineUrlScheme and \l