summaryrefslogtreecommitdiffstats
path: root/src/core/api/qwebengineclientcertificatestore.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove QT_NO_SSL checksMichal Klocek2020-08-281-4/+3
| | | | | | | They are not longer needed. Change-Id: I15967d3b4ffcb5c64ec64aedcf55069ccb7697b1 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
* Use QList instead of QVectorJarek Kobus2020-07-151-2/+2
| | | | | | Task-number: QTBUG-84469 Change-Id: I666a060351f73783e15e3f96884c9393a5cd7e46 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
* Cleanup coding style in src/core/apiAllan Sandfeld Jensen2019-05-031-1/+1
| | | | | Change-Id: I1c235d49a9520088142fbc89d21fc589d4037a4f Reviewed-by: Kai Koehne <kai.koehne@qt.io>
* Switch export macros to standard formAllan Sandfeld Jensen2019-04-011-1/+1
| | | | | | | | | | Qt expects the export macros to have Q_ prefixes, otherwise the symbol versioning script won't find them and mark them. Task-number: QTBUG-74752 Change-Id: I1e057802f6715d170bdd9074f281e73fb96c9e52 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Kai Koehne <kai.koehne@qt.io>
* Remove Entry type from QWebEngineClientCertificateStoreAllan Sandfeld Jensen2019-03-201-8/+2
| | | | | | | | It is now only possible to list contained certificates, which is used by the existing tests. Change-Id: I3eada816a05cff2bb9cc5d39125136e9084a1a2f Reviewed-by: Jüri Valdmann <juri.valdmann@qt.io>
* Tie client certificate stores to profilesAllan Sandfeld Jensen2019-03-011-7/+5
| | | | | | | | Move the client certificate store from being global to being tied to individual profiles. Change-Id: Ib21ae14c501b7d0612b84ae7535120291aeeada2 Reviewed-by: Jüri Valdmann <juri.valdmann@qt.io>
* Make client certificate store thread safeAllan Sandfeld Jensen2019-02-251-1/+1
| | | | | | | | If the users manipulate the API from the UI, we need to read from the UI thread as well. Change-Id: I8af787a357954cff4fbdd94bcf27b880fb6aecb4 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
* Cleanup client cert store filesAllan Sandfeld Jensen2019-02-111-2/+8
| | | | | | | | The files were not in the right places and wasn't split correctly in domains. Change-Id: Ia0d3b1c8f9bc6082f338a09cb64c4bb4b1aa16ad Reviewed-by: Jüri Valdmann <juri.valdmann@qt.io>
* Fix -no-ssl buildPeter Varga2019-01-301-0/+4
| | | | | Change-Id: I20ca768b2ca5be0992d62c4ce4a32f572169b5bd Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
* Add in-memory client cert store implementationVijith Kini2019-01-231-0/+77
Qt applications using webengine can now use a specific client certificate without affecting(or using) the native certificate store. It sounds useful for consumer applications where the application wants to identify itself to the server as the application and not as a specific user. Change-Id: Ib4fcdfd48e00051e3215f90be8701978902b1fbf Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>