mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
244 lines
8.3 KiB
C++
244 lines
8.3 KiB
C++
/* This file is part of the KDE project
|
|
*
|
|
* Copyright (C) 2000,2001 George Staikos <staikos@kde.org>
|
|
* Copyright (C) 2000 Malte Starostik <malte@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "ksslinfodialog.h"
|
|
#include "ui_sslinfo.h"
|
|
#include "ksslcertificatebox.h"
|
|
|
|
#include <QtGui/QFrame>
|
|
#include <QtCore/qdatetime.h>
|
|
#include <QtCore/QFile>
|
|
#include <QtGui/QLabel>
|
|
#include <QtGui/QLayout>
|
|
#include <QtCore/qprocess.h>
|
|
#include <QtNetwork/QSslCertificate>
|
|
|
|
#include <kglobal.h>
|
|
#include <klocale.h>
|
|
|
|
|
|
class KSslInfoDialog::KSslInfoDialogPrivate
|
|
{
|
|
public:
|
|
QList<QSslCertificate> certificateChain;
|
|
QList<QList<QSslError::SslError> > certificateErrors;
|
|
|
|
bool isMainPartEncrypted;
|
|
bool auxPartsEncrypted;
|
|
|
|
Ui::SslInfo ui;
|
|
KSslCertificateBox *subject;
|
|
KSslCertificateBox *issuer;
|
|
};
|
|
|
|
|
|
|
|
KSslInfoDialog::KSslInfoDialog(QWidget *parent)
|
|
: KDialog(parent),
|
|
d(new KSslInfoDialogPrivate)
|
|
{
|
|
setCaption(i18n("KDE SSL Information"));
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
d->ui.setupUi(mainWidget());
|
|
setButtons(KDialog::Close);
|
|
|
|
d->subject = new KSslCertificateBox(d->ui.certParties);
|
|
d->issuer = new KSslCertificateBox(d->ui.certParties);
|
|
d->ui.certParties->addTab(d->subject, i18nc("The receiver of the SSL certificate", "Subject"));
|
|
d->ui.certParties->addTab(d->issuer, i18nc("The authority that issued the SSL certificate", "Issuer"));
|
|
|
|
d->isMainPartEncrypted = true;
|
|
d->auxPartsEncrypted = true;
|
|
updateWhichPartsEncrypted();
|
|
|
|
#if 0
|
|
if (KSSL::doesSSLWork()) {
|
|
if (d->m_secCon) {
|
|
d->pixmap->setPixmap(BarIcon("security-high"));
|
|
d->info->setText(i18n("Current connection is secured with SSL."));
|
|
} else {
|
|
d->pixmap->setPixmap(BarIcon("security-low"));
|
|
d->info->setText(i18n("Current connection is not secured with SSL."));
|
|
}
|
|
} else {
|
|
d->pixmap->setPixmap(BarIcon("security-low"));
|
|
d->info->setText(i18n("SSL support is not available in this build of KDE."));
|
|
}
|
|
#endif
|
|
}
|
|
|
|
|
|
KSslInfoDialog::~KSslInfoDialog()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
|
|
//slot
|
|
void KSslInfoDialog::launchConfig()
|
|
{
|
|
QProcess::startDetached("kcmshell4", QStringList() << "crypto");
|
|
}
|
|
|
|
|
|
void KSslInfoDialog::setMainPartEncrypted(bool mainEncrypted)
|
|
{
|
|
d->isMainPartEncrypted = mainEncrypted;
|
|
updateWhichPartsEncrypted();
|
|
}
|
|
|
|
|
|
void KSslInfoDialog::setAuxiliaryPartsEncrypted(bool auxEncrypted)
|
|
{
|
|
d->auxPartsEncrypted = auxEncrypted;
|
|
updateWhichPartsEncrypted();
|
|
}
|
|
|
|
|
|
void KSslInfoDialog::updateWhichPartsEncrypted()
|
|
{
|
|
if (d->isMainPartEncrypted) {
|
|
if (d->auxPartsEncrypted) {
|
|
d->ui.encryptionIndicator->setPixmap(BarIcon("security-high"));
|
|
d->ui.explanation->setText(i18n("Current connection is secured with SSL."));
|
|
} else {
|
|
d->ui.encryptionIndicator->setPixmap(BarIcon("security-medium"));
|
|
d->ui.explanation->setText(i18n("The main part of this document is secured "
|
|
"with SSL, but some parts are not."));
|
|
}
|
|
} else {
|
|
if (d->auxPartsEncrypted) {
|
|
d->ui.encryptionIndicator->setPixmap(BarIcon("security-medium"));
|
|
d->ui.explanation->setText(i18n("Some of this document is secured with SSL, "
|
|
"but the main part is not."));
|
|
} else {
|
|
d->ui.encryptionIndicator->setPixmap(BarIcon("security-low"));
|
|
d->ui.explanation->setText(i18n("Current connection is not secured with SSL."));
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void KSslInfoDialog::setSslInfo(const QList<QSslCertificate> &certificateChain,
|
|
const QString &ip, const QString &host,
|
|
const QString &sslProtocol, const QString &cipher,
|
|
int usedBits, int bits,
|
|
const QList<QList<QSslError::SslError> > &validationErrors) {
|
|
|
|
d->certificateChain = certificateChain;
|
|
d->certificateErrors = validationErrors;
|
|
|
|
d->ui.certSelector->clear();
|
|
for (int i = 0; i < certificateChain.size(); i++) {
|
|
const QSslCertificate &cert = certificateChain[i];
|
|
QString name;
|
|
static const QSslCertificate::SubjectInfo si[] = {
|
|
QSslCertificate::CommonName,
|
|
QSslCertificate::Organization,
|
|
QSslCertificate::OrganizationalUnitName
|
|
};
|
|
for (int j = 0; j < 3 && name.isEmpty(); j++)
|
|
name = cert.subjectInfo(si[j]);
|
|
d->ui.certSelector->addItem(name);
|
|
}
|
|
if (certificateChain.size() < 2) {
|
|
d->ui.certSelector->setEnabled(false);
|
|
}
|
|
connect(d->ui.certSelector, SIGNAL(currentIndexChanged(int)),
|
|
this, SLOT(displayFromChain(int)));
|
|
if (d->certificateChain.isEmpty())
|
|
d->certificateChain.append(QSslCertificate());
|
|
displayFromChain(0);
|
|
|
|
d->ui.ip->setText(ip);
|
|
d->ui.address->setText(host);
|
|
d->ui.sslVersion->setText(sslProtocol);
|
|
|
|
const QStringList cipherInfo = cipher.split('\n', QString::SkipEmptyParts);
|
|
if (cipherInfo.size() >= 4) {
|
|
d->ui.encryption->setText(i18nc("%1, using %2 bits of a %3 bit key", "%1, %2 %3", cipherInfo[0],
|
|
i18ncp("Part of: %1, using %2 bits of a %3 bit key",
|
|
"using %1 bit", "using %1 bits", usedBits),
|
|
i18ncp("Part of: %1, using %2 bits of a %3 bit key",
|
|
"of a %1 bit key", "of a %1 bit key", bits)));
|
|
d->ui.details->setText(QString("Auth = %1, Kx = %2, MAC = %3")
|
|
.arg(cipherInfo[1], cipherInfo[2],
|
|
cipherInfo[3]));
|
|
} else {
|
|
d->ui.encryption->setText("");
|
|
d->ui.details->setText("");
|
|
}
|
|
}
|
|
|
|
|
|
void KSslInfoDialog::displayFromChain(int i)
|
|
{
|
|
const QSslCertificate &cert = d->certificateChain[i];
|
|
|
|
QString trusted;
|
|
if (!d->certificateErrors[i].isEmpty()) {
|
|
trusted = i18nc("The certificate is not trusted", "NO, there were errors:");
|
|
foreach (QSslError::SslError e, d->certificateErrors[i]) {
|
|
QSslError errorclass = QSslError(e);
|
|
trusted.append('\n');
|
|
trusted.append(errorclass.errorString());
|
|
}
|
|
} else {
|
|
trusted = i18nc("The certificate is trusted", "Yes");
|
|
}
|
|
d->ui.trusted->setText(trusted);
|
|
|
|
QString vp = i18nc("%1 is the effective date of the certificate, %2 is the expiry date", "%1 to %2",
|
|
KGlobal::locale()->formatDateTime(cert.effectiveDate()),
|
|
KGlobal::locale()->formatDateTime(cert.expiryDate()));
|
|
d->ui.validityPeriod->setText(vp);
|
|
|
|
d->ui.serial->setText(cert.serialNumber());
|
|
d->ui.digest->setText(cert.digest().toHex());
|
|
d->ui.sha1Digest->setText(cert.digest(QCryptographicHash::Sha1).toHex());
|
|
|
|
d->subject->setCertificate(cert, KSslCertificateBox::Subject);
|
|
d->issuer->setCertificate(cert, KSslCertificateBox::Issuer);
|
|
}
|
|
|
|
|
|
//static
|
|
QList<QList<QSslError::SslError> > KSslInfoDialog::errorsFromString(const QString &es)
|
|
{
|
|
QStringList sl = es.split('\n', QString::KeepEmptyParts);
|
|
QList<QList<QSslError::SslError> > ret;
|
|
foreach (const QString &s, sl) {
|
|
QList<QSslError::SslError> certErrors;
|
|
QStringList sl2 = s.split('\t', QString::SkipEmptyParts);
|
|
foreach (const QString &s2, sl2) {
|
|
bool didConvert;
|
|
QSslError::SslError error = static_cast<QSslError::SslError>(s2.toInt(&didConvert));
|
|
if (didConvert) {
|
|
certErrors.append(error);
|
|
}
|
|
}
|
|
ret.append(certErrors);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
#include "moc_ksslinfodialog.cpp"
|