diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-16 00:41:57 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-16 00:41:57 +0200 |
| commit | 33c91102a58e2fbcf9d7a66e33b41a65fa3f0e0c (patch) | |
| tree | a724f0c3dcc48c8ce1f78c2665fe8ef170acb379 /src/main.cpp | |
| parent | 5bb3f3f92e62a0af02fe475943759b8c25cd4592 (diff) | |
| download | kristall-33c91102a58e2fbcf9d7a66e33b41a65fa3f0e0c.tar.gz | |
Adds improved client certificate management, adds server certificate management.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index c280425..81ace41 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,6 +10,7 @@ IdentityCollection global_identities; QSettings global_settings { "xqTechnologies", "Kristall" }; QClipboard * global_clipboard; +SslTrust global_trust; int main(int argc, char *argv[]) { @@ -28,6 +29,10 @@ int main(int argc, char *argv[]) global_identities.load(global_settings); global_settings.endGroup(); + global_settings.beginGroup("Trusted Servers"); + global_trust.load(global_settings); + global_settings.endGroup(); + MainWindow w(&app); auto urls = cli_parser.positionalArguments(); |
