-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkgpgkeygenerate.cpp
229 lines (192 loc) · 6.16 KB
/
kgpgkeygenerate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*
SPDX-FileCopyrightText: 2002 Jean-Baptiste Mardelle <[email protected]>
SPDX-FileCopyrightText: 2007, 2009, 2010, 2012, 2013, 2014 Rolf Eike Beer <[email protected]>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "kgpgkeygenerate.h"
#include "core/convert.h"
#include "core/emailvalidator.h"
#include "gpgproc.h"
#include "kgpgsettings.h"
#include <KConfigGroup>
#include <KLocalizedString>
#include <KMessageBox>
#include <QComboBox>
#include <QDialogButtonBox>
#include <QIntValidator>
#include <QHBoxLayout>
#include <QStringList>
#include <QVBoxLayout>
#include <QWhatsThis>
#include <QWidget>
using namespace KgpgCore;
KgpgKeyGenerate::KgpgKeyGenerate(QWidget *parent)
: QDialog(parent),
m_expert(false)
{
setupUi(this);
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel);
QWidget *mainWidget = new QWidget(this);
QVBoxLayout *mainLayout = new QVBoxLayout(this);
setLayout(mainLayout);
mainLayout->addWidget(mainWidget);
okButton = buttonBox->button(QDialogButtonBox::Ok);
okButton->setDefault(true);
okButton->setShortcut(Qt::CTRL | Qt::Key_Return);
QPushButton *user1Button = new QPushButton;
buttonBox->addButton(user1Button, QDialogButtonBox::ActionRole);
connect(buttonBox, &QDialogButtonBox::accepted, this, &KgpgKeyGenerate::accept);
connect(buttonBox, &QDialogButtonBox::rejected, this, &KgpgKeyGenerate::reject);
user1Button->setText(i18n("&Expert Mode"));
user1Button->setToolTip(i18n("Go to Expert Mode"));
user1Button->setWhatsThis(i18n( "If you go to expert mode, you will use the command line to create your key." ));
connect(m_kname, &QLineEdit::textChanged, this, &KgpgKeyGenerate::slotEnableOk);
m_keyexp->setMinimumSize(m_keyexp->sizeHint());
connect(m_keyexp, QOverload<int>::of(&QComboBox::activated), this, &KgpgKeyGenerate::slotEnableDays);
m_keysize->addItem(i18n("1024"));
m_keysize->addItem(i18n("2048"));
m_keysize->addItem(i18n("4096"));
m_keysize->setCurrentIndex(1); // 2048
m_keysize->setMinimumSize(m_keysize->sizeHint());
const QStringList pkAlgos = GPGProc::getGpgPubkeyAlgorithms(KGpgSettings::gpgBinaryPath());
if (pkAlgos.contains(QLatin1String("RSA"))) {
m_keykind->addItem(KgpgCore::Convert::toString(KgpgCore::ALGO_RSA_RSA));
m_keykind->addItem(KgpgCore::Convert::toString(KgpgCore::ALGO_RSA));
}
if (pkAlgos.contains(QLatin1String("DSA")) && pkAlgos.contains(QLatin1String("ELG")))
m_keykind->addItem(KgpgCore::Convert::toString(KgpgCore::ALGO_DSA_ELGAMAL));
m_keykind->setCurrentIndex(0); // normally RSA+RSA
slotEnableCaps(m_keykind->currentIndex());
m_keykind->setMinimumSize(m_keykind->sizeHint());
mainLayout->addWidget(vgroup);
mainLayout->addWidget(buttonBox);
slotEnableOk();
updateGeometry();
show();
connect(okButton, &QPushButton::clicked, this, &KgpgKeyGenerate::slotOk);
connect(user1Button, &QPushButton::clicked, this, &KgpgKeyGenerate::slotUser1);
connect(m_keykind, QOverload<int>::of(&QComboBox::activated), this, &KgpgKeyGenerate::slotEnableCaps);
}
void KgpgKeyGenerate::slotOk()
{
if (m_kname->text().simplified().isEmpty())
{
KMessageBox::error(this, i18n("You must give a name."));
return;
}
if (m_kname->text().simplified().length() < 5)
{
KMessageBox::error(this, i18n("The name must have at least 5 characters"));
return;
}
if (m_kname->text().simplified().at(0).isDigit())
{
KMessageBox::error(this, i18n("The name must not start with a digit"));
return;
}
QString vmail = m_mail->text();
if (vmail.isEmpty())
{
int result = KMessageBox::warningContinueCancel(this, i18n("You are about to create a key with no email address"));
if (result != KMessageBox::Continue)
return;
} else {
int pos = 0;
if (EmailValidator().validate(vmail, pos) == QValidator::Invalid)
{
KMessageBox::error(this, i18n("Email address not valid"));
return;
}
}
accept();
}
void KgpgKeyGenerate::slotUser1()
{
m_expert = true;
accept();
}
void KgpgKeyGenerate::slotEnableDays(const int state)
{
m_days->setDisabled(state == 0);
}
void KgpgKeyGenerate::slotEnableCaps(const int state)
{
// currently only supported for standalone RSA keys
capabilities->setDisabled(state != 2);
}
void KgpgKeyGenerate::slotEnableOk()
{
okButton->setEnabled((m_kname->text().simplified().length() >= 5) &&
!m_kname->text().simplified().at(0).isDigit());
}
bool KgpgKeyGenerate::isExpertMode() const
{
return m_expert;
}
KgpgCore::KgpgKeyAlgo KgpgKeyGenerate::algo() const
{
if (m_keykind->currentText() == KgpgCore::Convert::toString(KgpgCore::ALGO_RSA))
return KgpgCore::ALGO_RSA;
else if (m_keykind->currentText() == KgpgCore::Convert::toString(KgpgCore::ALGO_RSA_RSA))
return KgpgCore::ALGO_RSA_RSA;
else
return KgpgCore::ALGO_DSA_ELGAMAL;
}
KgpgCore::KgpgSubKeyType KgpgKeyGenerate::caps() const
{
KgpgCore::KgpgSubKeyType ret;
if (!capabilities->isEnabled())
return ret;
if (capAuth->isChecked())
ret |= KgpgCore::SKT_AUTHENTICATION;
if (capCert->isChecked())
ret |= KgpgCore::SKT_CERTIFICATION;
if (capEncrypt->isChecked())
ret |= KgpgCore::SKT_ENCRYPTION;
if (capSign->isChecked())
ret |= KgpgCore::SKT_SIGNATURE;
return ret;
}
uint KgpgKeyGenerate::size() const
{
return m_keysize->currentText().toUInt();
}
char KgpgKeyGenerate::expiration() const
{
switch (m_keyexp->currentIndex()) {
case 1:
return 'd';
case 2:
return 'w';
case 3:
return 'm';
case 4:
default:
return 'y';
}
}
uint KgpgKeyGenerate::days() const
{
if (m_days->text().isEmpty())
return 0;
return m_days->text().toUInt();
}
QString KgpgKeyGenerate::name() const
{
if (m_kname->text().isEmpty())
return QString();
return m_kname->text();
}
QString KgpgKeyGenerate::email() const
{
if (m_mail->text().isEmpty())
return QString();
return m_mail->text();
}
QString KgpgKeyGenerate::comment() const
{
if (m_comment->text().isEmpty())
return QString();
return m_comment->text();
}
#include "moc_kgpgkeygenerate.cpp"