xca/MainWindowX509Req.cpp
2002-02-15 18:25:26 +00:00

13 lines
317 B
C++

#include "MainWindow.h"
void MainWindow::newX509Req()
{
NewX509Req_UI *dlg = new NewX509Req_UI(this,0,true,0);
dlg->keyList->insertStringList(keys->getPrivateDesc());
dlg->exec();
RSAkey *key = keys->getSelectedKey(dlg->keyList->currentText());
X509Req *req = new X509Req(key, this);
cerr << "HIIIIEEER\n";
}