From 33c91102a58e2fbcf9d7a66e33b41a65fa3f0e0c Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Tue, 16 Jun 2020 00:41:57 +0200 Subject: Adds improved client certificate management, adds server certificate management. --- src/trustedhost.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/trustedhost.hpp (limited to 'src/trustedhost.hpp') diff --git a/src/trustedhost.hpp b/src/trustedhost.hpp new file mode 100644 index 0000000..6cba5ab --- /dev/null +++ b/src/trustedhost.hpp @@ -0,0 +1,15 @@ +#ifndef TRUSTEDHOST_HPP +#define TRUSTEDHOST_HPP + +#include +#include +#include + +struct TrustedHost +{ + QString host_name; + QSslKey public_key; + QDateTime trusted_at; +}; + +#endif // TRUSTEDHOST_HPP -- cgit v1.2.3