mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
I discovered some bugs in SPKAC handling and fixing them was hard. Because of this bugs noone may have used the feature in the past. Remove it.
55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2015 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include "lib/pki_x509req.h"
|
|
#include "X509SuperTreeView.h"
|
|
#include "MainWindow.h"
|
|
#include <QAbstractItemModel>
|
|
#include <QAbstractItemView>
|
|
#include <QMenu>
|
|
|
|
void X509SuperTreeView::fillContextMenu(QMenu *menu, QMenu *subExport,
|
|
const QModelIndex &index, QModelIndexList indexes)
|
|
{
|
|
pki_x509super *x = static_cast<pki_x509super *>
|
|
(index.internalPointer());
|
|
transform = NULL;
|
|
|
|
if (indexes.size() != 1)
|
|
return;
|
|
|
|
subExport->addAction(tr("OpenSSL config"), this, SLOT(toOpenssl()));
|
|
transform = menu->addMenu(tr("Transform"));
|
|
transform->addAction(tr("Template"), this, SLOT(toTemplate()));
|
|
transform->addAction(tr("Public key"), this,
|
|
SLOT(extractPubkey()))->setEnabled(!x->getRefKey());
|
|
}
|
|
|
|
void X509SuperTreeView::extractPubkey()
|
|
{
|
|
QModelIndex idx = currentIndex();
|
|
|
|
if (idx.isValid() && x509super)
|
|
x509super->extractPubkey(idx);
|
|
}
|
|
|
|
void X509SuperTreeView::toTemplate()
|
|
{
|
|
QModelIndex idx = currentIndex();
|
|
|
|
if (idx.isValid() && x509super)
|
|
x509super->toTemplate(idx);
|
|
}
|
|
|
|
void X509SuperTreeView::toOpenssl()
|
|
{
|
|
QModelIndex idx = currentIndex();
|
|
|
|
if (idx.isValid() && x509super)
|
|
x509super->toOpenssl(idx);
|
|
}
|