diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-29 18:59:23 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-29 18:59:23 +0000 |
commit | f4d4709d23e36aec8fb59e75122d711d111fe384 (patch) | |
tree | 0ca21c6188b934bd80b63b9f9ca8d3fa5080e81e | |
parent | added minor comments (diff) | |
download | gpg4usb-f4d4709d23e36aec8fb59e75122d711d111fe384.tar.gz gpg4usb-f4d4709d23e36aec8fb59e75122d711d111fe384.zip |
set maximum RSA keysize to 16384 bit
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@866 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | keygendialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keygendialog.cpp b/keygendialog.cpp index 83c4096..8b50557 100644 --- a/keygendialog.cpp +++ b/keygendialog.cpp @@ -225,7 +225,7 @@ void KeyGenDialog::keyTypeChanged() qDebug() << "changed"; if (keyTypeComboBox->currentText() == "RSA") { qDebug() << "RSA"; - keySizeSpinBox->setMaximum(4096); + keySizeSpinBox->setMaximum(16384); } else { qDebug() << "DSA"; keySizeSpinBox->setMaximum(65536); |