From 4f8f8fc2a9450982078f18d49ddfa9036023bc29 Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Fri, 12 Jun 2020 17:22:43 +0200 Subject: Adds certificate manager, removes client certificate window. --- src/cryptoidentity.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/cryptoidentity.hpp') diff --git a/src/cryptoidentity.hpp b/src/cryptoidentity.hpp index a5fbb7f..09e9489 100644 --- a/src/cryptoidentity.hpp +++ b/src/cryptoidentity.hpp @@ -10,10 +10,19 @@ //! of a key-certificate pair and some user information. struct CryptoIdentity { + //! The certificate that is used for cryptography QSslCertificate certificate; + + //! The actual private key that is used for cryptography QSslKey private_key; + + //! The title with which the identity is presented to the user. QString display_name; + //! Notes that the user can have per identity for improved identity management + QString user_notes; + + //! True for long-lived identities bool is_persistent = false; bool isValid() const { -- cgit v1.2.3