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-30 13:21:58 +0100
commit9272fda9ebfe71164ad257d23e7f31342bad884f (patch)
treec53b958dc9669408bbba9f78887da500b104e655
parent148c42b57a0a0b0cf6b4088d319196805ee3c288 (diff)
Doc: Emphasize in-memory and system stored client certificates
Task-number: QTBUG-106497 Change-Id: If03062a5ab6cf5f6d14329637f44b5ea7675f65a Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> (cherry picked from commit 0902e992ef63df5fe001e4865ebec4e11141f0a3)
-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