xca/NewX509.cpp
chris 5dfd8fe03a Wizard enhanced, CAserial is stored with the cert as well as a default template
Passwordboxes set focus right (Andrey Brindeew <abr@abr.pp.ru>)
Serial and template can be selected
2002-09-20 00:43:22 +00:00

260 lines
6.5 KiB
C++

/*
* 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.sleepycat.com
*
* http://www.trolltech.com
*
*
*
* http://www.hohnstaedt.de/xca
* email: christian@hohnstaedt.de
*
* $Id$
*
*/
#include "NewX509.h"
NewX509::NewX509(QWidget *parent , const char *name, db_key *key, db_x509req *req, db_x509 *cert, db_temp *temp, QPixmap *image)
:NewX509_UI(parent, name, true, 0)
{
connect( this, SIGNAL(genKey()), parent, SLOT(newKey()) );
connect( parent, SIGNAL(keyDone(QString)), this, SLOT(newKeyDone(QString)) );
keys = key;
reqs = req;
temps = temp;
certs = cert;
pki_x509 *possibleSigner;
if (image) {
bigImg1->setPixmap(*image);
bigImg2->setPixmap(*image);
bigImg3->setPixmap(*image);
}
QStringList strings;
// are there any useable private keys ?
if (keys) {
strings = keys->getPrivateDesc();
if (strings.isEmpty()) {
newKey();
}
else {
keyList->insertStringList(strings);
}
}
else {
keyList->setEnabled(false);
genKeyBUT->setEnabled(false);
setAppropriate(page3, false);
}
// any PKCS#10 requests to be used ?
if (reqs) {
strings = reqs->getDesc();
if (strings.isEmpty()) {
fromReqRB->setDisabled(true);
}
else {
reqList->insertStringList(strings);
}
}
else {
reqList->setEnabled(false);
fromReqRB->setEnabled(false);
}
// How about signing certificates ?
if (certs) {
strings = certs->getSignerDesc();
if (strings.isEmpty()) {
foreignSignRB->setDisabled(true);
certList->setDisabled(true);
}
else {
certList->insertStringList(strings);
// suggested from: Andrey Brindeew <abr@abr.pp.ru>
possibleSigner=(pki_x509 *)certs->getSelectedPKI();
if (possibleSigner && possibleSigner->canSign()) {
//const QString name = possibleSigner->getDescription().c_str();
//certList->setCurrentText(name);
foreignSignRB->setChecked(true);
}
}
}
else {
foreignSignRB->setDisabled(true);
certList->setDisabled(true);
}
// settings for the templates ....
if (temps) {
strings = temps->getDesc();
if (strings.isEmpty()) {
setAppropriate(page1,false);
}
else {
tempList->insertStringList(strings);
}
}
else {
setAppropriate(page1,false);
}
fromDataRB->setChecked(true);
setFinishEnabled(page6,true);
setNextEnabled(page2,false);
}
void NewX509::setRequest()
{
setAppropriate(page3, false);
setAppropriate(page4, false);
setAppropriate(page5, false);
finishButton()->setEnabled(true);
}
void NewX509::defineTemplate(pki_temp *temp)
{
setAppropriate(page1,false);
fromTemplate(temp);
}
void NewX509::fromTemplate(pki_temp *temp)
{
countryName->setText(temp->C.c_str());
stateOrProvinceName->setText(temp->P.c_str());
localityName->setText(temp->L.c_str());
organisationName->setText(temp->O.c_str());
organisationalUnitName->setText(temp->OU.c_str());
commonName->setText(temp->CN.c_str());
emailAddress->setText(temp->EMAIL.c_str());
subAltName->setText(temp->subAltName.c_str());
issAltName->setText(temp->issAltName.c_str());
crlDist->setText(temp->crlDist.c_str());
}
void NewX509::toTemplate(pki_temp *temp)
{
temp->C = countryName->text().latin1();
temp->P = stateOrProvinceName->text().latin1();
temp->L = localityName->text().latin1();
temp->O = organisationName->text().latin1();
temp->OU = organisationalUnitName->text().latin1();
temp->CN = commonName->text().latin1();
temp->EMAIL = emailAddress->text().latin1();
temp->subAltName = subAltName->text().latin1();
temp->issAltName = issAltName->text().latin1();
temp->crlDist = crlDist->text().latin1();
}
void NewX509::dataChangeP2()
{
if (description->text() != "" || fromReqRB->isChecked()) {
setNextEnabled(page2,true);
}
else {
setNextEnabled(page2,false);
}
}
void NewX509::showPage(QWidget *page)
{
if ( page == page2 ) {
dataChangeP2();
}
else if ( page == page3 ) {
if (!selfSignRB->isChecked() && !foreignSignRB->isChecked()) {
if (fromDataRB->isChecked()) {
selfSignRB->setChecked(true);
serialNr->setText("00");
}
else {
foreignSignRB->setChecked(true);
}
}
}
else if (page == page4) {
}
QWizard::showPage(page);
}
void NewX509::templateChanged()
{
pki_temp *temp = (pki_temp *)temps->getSelectedPKI(tempList->currentText().latin1());
fromTemplate(temp);
}
void NewX509::switchExtended()
{
CERR << "SWITCH Extended" <<endl;
if (changeDefault->isChecked()) {
setAppropriate(page4, true);
setAppropriate(page5, true);
}
else {
setAppropriate(page4, false);
setAppropriate(page5, false);
}
}
void NewX509::setDisabled(int state)
{
if (state == 2) {
inputFrame->setDisabled(false);
reqList->setDisabled(true);
}
else if (state == 0) {
inputFrame->setDisabled(true);
reqList->setDisabled(false);
}
}
void NewX509::newKey()
{
emit genKey();
}
void NewX509::newKeyDone(QString name)
{
keyList->insertItem(name,0);
keyList->setCurrentItem(0);
}