1 /***************************************************************************
2 * Copyright (C) 2005-2014 by the Quassel Project *
3 * devel@quassel-irc.org *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef CLIENTIDENTITY_H
22 #define CLIENTIDENTITY_H
26 class ClientCertManager;
28 class CertIdentity : public Identity
34 CertIdentity(IdentityId id = 0, QObject *parent = 0);
35 CertIdentity(const Identity &other, QObject *parent = 0);
36 CertIdentity(const CertIdentity &other, QObject *parent = 0);
39 inline bool isDirty() const { return _isDirty; }
41 inline bool isDirty() const { return false; }
45 void enableEditSsl(bool enable = true);
46 inline const QSslKey &sslKey() const { return _sslKey; }
47 inline const QSslCertificate &sslCert() const { return _sslCert; }
49 void setSslKey(const QSslKey &key);
50 void setSslCert(const QSslCertificate &cert);
53 void requestUpdateSslSettings();
56 void sslSettingsUpdated();
62 ClientCertManager *_certManager;
65 QSslCertificate _sslCert;
70 // ========================================
72 // ========================================
74 class ClientCertManager : public CertManager
79 ClientCertManager(IdentityId id, CertIdentity *parent) : CertManager(id, parent), _certIdentity(parent) {}
81 virtual inline const QSslKey &sslKey() const { return _certIdentity->sslKey(); }
82 virtual inline const QSslCertificate &sslCert() const { return _certIdentity->sslCert(); }
85 virtual void setSslKey(const QByteArray &encoded);
86 virtual void setSslCert(const QByteArray &encoded);
89 CertIdentity *_certIdentity;
95 #endif //CLIENTIDENTITY_H