aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/KeygenDialog.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-05-21 09:40:49 +0000
committerSaturneric <[email protected]>2021-05-21 09:40:49 +0000
commite7b93cbdd9bfc339d5d3ccade594ad614b5c9eaa (patch)
tree94f78f3cda5037790fb40a60290e89cd6b7ba975 /include/ui/KeygenDialog.h
parentChange Project Name to GPGFrontend. (diff)
downloadGpgFrontend-e7b93cbdd9bfc339d5d3ccade594ad614b5c9eaa.tar.gz
GpgFrontend-e7b93cbdd9bfc339d5d3ccade594ad614b5c9eaa.zip
Modified KeyList and Add Usage Support;
Improve and Expand GpgKey. Add GpgSubKey. Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r--include/ui/KeygenDialog.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/ui/KeygenDialog.h b/include/ui/KeygenDialog.h
index 34dfeda1..08193fd5 100644
--- a/include/ui/KeygenDialog.h
+++ b/include/ui/KeygenDialog.h
@@ -61,14 +61,11 @@ private:
QLineEdit *nameEdit{}; /** Lineedit for the keys name */
QLineEdit *emailEdit{}; /** Lineedit for the keys email */
QLineEdit *commentEdit{}; /** Lineedit for the keys comment */
- QLineEdit *passwordEdit{}; /** Lineedit for the keys password */
- QLineEdit *repeatpwEdit{}; /** Lineedit for the repetition of the keys password */
QSpinBox *keySizeSpinBox{}; /** Spinbox for the keys size (in bit) */
QComboBox *keyTypeComboBox{}; /** Combobox for Keytpe */
QDateTimeEdit *dateEdit{}; /** Dateedit for expiration date */
QCheckBox *expireCheckBox{}; /** Checkbox, if key should expire */
QCheckBox *noPassPhraseCheckBox{};
- QSlider *pwStrengthSlider{}; /** Slider showing the password strength */
QGroupBox *keyUsageGroupBox{}; /** Group of Widgets detecting the usage of the Key **/
@@ -79,13 +76,6 @@ private:
void generateKeyDialog();
- /**
- * @details Check the password strength of the text in the passwordEdit member
- *
- * @return digit between 0 and 6, the higher the more secure is the password
- */
- int checkPassWordStrength();
-
/**
* @details Refresh widgets state by GenKeyInfo
@@ -104,11 +94,6 @@ private slots:
void slotExpireBoxChanged();
/**
- * @details When passwordedit changed, set new value for password strength slider
- */
- void slotPasswordEditChanged();
-
- /**
* @details check all lineedits for false entries. Show error, when there is one, otherwise generate the key
*/
void slotKeyGenAccept();