diff options
Diffstat (limited to '')
-rw-r--r-- | include/ui/KeygenDialog.h | 15 |
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(); |