mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
13 lines
317 B
C++
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";
|
|
}
|