mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2012 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
|
|
#include "CrlDetail.h"
|
|
#include "MainWindow.h"
|
|
#include "lib/pki_crl.h"
|
|
#include "widgets/distname.h"
|
|
#include "widgets/clicklabel.h"
|
|
#include "widgets/RevocationList.h"
|
|
#include <QtGui/QLabel>
|
|
#include <QtGui/QTextEdit>
|
|
#include <QtGui/QLineEdit>
|
|
|
|
CrlDetail::CrlDetail(MainWindow *mainwin)
|
|
:QDialog(mainwin)
|
|
{
|
|
mw = mainwin;
|
|
setupUi(this);
|
|
setWindowTitle(tr(XCA_TITLE));
|
|
|
|
image->setPixmap(*MainWindow::revImg);
|
|
descr->setReadOnly(true);
|
|
}
|
|
|
|
void CrlDetail::setCrl(pki_crl *crl)
|
|
{
|
|
pki_x509 *iss;
|
|
x509v3ext e1, e2;
|
|
|
|
iss = crl->getIssuer();
|
|
signCheck->disableToolTip();
|
|
if (iss != NULL) {
|
|
issuerIntName->setText(iss->getIntName());
|
|
issuerIntName->setGreen();
|
|
pki_key *key = iss->getPubKey();
|
|
if (crl->verify(key)) {
|
|
signCheck->setText(crl->getSigAlg());
|
|
signCheck->setGreen();
|
|
} else {
|
|
signCheck->setText(tr("Failed"));
|
|
signCheck->setRed();
|
|
}
|
|
if (key)
|
|
delete key;
|
|
} else {
|
|
issuerIntName->setText(tr("Unknown signer"));
|
|
issuerIntName->setDisabled(true);
|
|
issuerIntName->disableToolTip();
|
|
signCheck->setText(tr("Verification not possible"));
|
|
signCheck->setDisabled(true);
|
|
}
|
|
|
|
descr->setText(crl->getIntName());
|
|
lUpdate->setText(crl->getLastUpdate().toPretty());
|
|
lUpdate->setToolTip(crl->getLastUpdate().toPrettyGMT());
|
|
nUpdate->setText(crl->getNextUpdate().toPretty());
|
|
nUpdate->setToolTip(crl->getNextUpdate().toPrettyGMT());
|
|
version->setText((++crl->getVersion()).toHex());
|
|
|
|
issuer->setX509name(crl->getSubject());
|
|
|
|
RevocationList::setupRevocationView(certList, crl->getRevList(), iss);
|
|
|
|
v3extensions->document()->setHtml(crl->printV3ext());
|
|
}
|