mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
182 lines
4.3 KiB
C++
182 lines
4.3 KiB
C++
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* Copyright (C) 2001 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* - Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* - Neither the name of the author nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software without
|
|
* specific prior written permission.
|
|
*
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*
|
|
* This program links to software with different licenses from:
|
|
*
|
|
* http://www.openssl.org which includes cryptographic software
|
|
* written by Eric Young (eay@cryptsoft.com)"
|
|
*
|
|
* http://www.trolltech.com
|
|
*
|
|
*
|
|
*
|
|
* http://www.hohnstaedt.de/xca
|
|
* email: christian@hohnstaedt.de
|
|
*
|
|
* $Id$
|
|
*
|
|
*/
|
|
|
|
|
|
#include "v3ext.h"
|
|
#include <Qt/qlabel.h>
|
|
#include <Qt/qlistwidget.h>
|
|
#include <Qt/qcombobox.h>
|
|
#include <Qt/qlineedit.h>
|
|
#include <Qt/qstringlist.h>
|
|
#include <Qt/qmessagebox.h>
|
|
#include "MainWindow.h"
|
|
#include "lib/exception.h"
|
|
|
|
v3ext::v3ext(QWidget *parent)
|
|
:QDialog(parent)
|
|
{
|
|
QStringList sl;
|
|
sl << "Type" << "Content";
|
|
setupUi(this);
|
|
setWindowTitle(tr(XCA_TITLE));
|
|
treeWidget->setHeaderLabels(sl);
|
|
}
|
|
|
|
v3ext::~v3ext()
|
|
{
|
|
}
|
|
|
|
void v3ext::addInfo(QLineEdit *myle, const QStringList &sl, int n,
|
|
X509 *s, X509 *s1)
|
|
{
|
|
type->addItems(sl);
|
|
nid = n;
|
|
le = myle;
|
|
if (le)
|
|
addItem(le->text());
|
|
|
|
memset(&ext_ctx, 0, sizeof(X509V3_CTX));
|
|
X509V3_set_ctx(&ext_ctx, s, s1, NULL, NULL, 0);
|
|
}
|
|
|
|
void v3ext::addItem(QString list)
|
|
{
|
|
int i;
|
|
QStringList sl;
|
|
sl = list.split(',');
|
|
for (i=0; i< sl.count(); i++)
|
|
addEntry(sl[i]);
|
|
}
|
|
|
|
/* for one TYPE:Content String */
|
|
void v3ext::addEntry(QString line)
|
|
{
|
|
int i;
|
|
QTreeWidgetItem *tw;
|
|
|
|
i = line.indexOf(':');
|
|
tw = new QTreeWidgetItem(treeWidget);
|
|
tw->setText(0, line.left(i));
|
|
tw->setText(1, line.right(line.length()-(i+1)));
|
|
}
|
|
|
|
QString v3ext::toString()
|
|
{
|
|
QTreeWidgetItem *tw;
|
|
QStringList str;
|
|
int i;
|
|
for (i=0; (tw = treeWidget->topLevelItem(i)); i++) {
|
|
QString s;
|
|
s = tw->text(0).trimmed();
|
|
if (!s.contains(':'))
|
|
s += ":" + tw->text(1).trimmed();
|
|
str += s;
|
|
}
|
|
return str.join(",");
|
|
}
|
|
|
|
|
|
void v3ext::delEntry()
|
|
{
|
|
treeWidget->takeTopLevelItem(
|
|
treeWidget->indexOfTopLevelItem(treeWidget->currentItem()));
|
|
}
|
|
|
|
void v3ext::addEntry()
|
|
{
|
|
QTreeWidgetItem *tw;
|
|
QString typ, cont;
|
|
|
|
typ = type->currentText();
|
|
if ( ! typ.contains(':') )
|
|
cont = value->text();
|
|
tw = new QTreeWidgetItem(treeWidget);
|
|
tw->setText(0, typ);
|
|
tw->setText(1, cont);
|
|
}
|
|
|
|
void v3ext::apply()
|
|
{
|
|
le->setText(toString());
|
|
__validate(false);
|
|
accept();
|
|
}
|
|
|
|
bool v3ext::__validate(bool showSuccess)
|
|
{
|
|
x509v3ext ext;
|
|
QString str, error;
|
|
|
|
if (nid==NID_info_access) {
|
|
str = "OCSP;";
|
|
}
|
|
str += toString();
|
|
|
|
ext.create(nid, str, &ext_ctx);
|
|
while (int i = ERR_get_error() ) {
|
|
error += ERR_error_string(i ,NULL);
|
|
error += "\n";
|
|
}
|
|
if (! error.isEmpty()) {
|
|
QMessageBox::warning(NULL, XCA_TITLE, tr("Validation failed:\n")
|
|
+ "'" + str + "'\n" + error, tr("&OK"));
|
|
return false;
|
|
}
|
|
if (showSuccess) {
|
|
QMessageBox::information(NULL, XCA_TITLE,
|
|
"Validation successfull:\n'" + ext.getValue() + "'", tr("&OK"));
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void v3ext::validate()
|
|
{
|
|
__validate(true);
|
|
}
|