summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-09-19 00:35:08 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-09-19 00:35:08 -0500
commit89861533aa956b64aa30f063e192a07fcf69b00d (patch)
tree655a1aa4246100ae4eb2a28119bdcd2faea72ea0
parentf041f149c48900d0e3367c1c97f09a87731bcc44 (diff)
downloadkcmldapmanager-89861533.tar.gz
kcmldapmanager-89861533.zip
Update for libtdeldap API change
-rw-r--r--src/userconfigdlg.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/userconfigdlg.cpp b/src/userconfigdlg.cpp
index 443391e..9e90065 100644
--- a/src/userconfigdlg.cpp
+++ b/src/userconfigdlg.cpp
@@ -317,7 +317,9 @@ void UserConfigDialog::createPKICertificate() {
if (m_base->certGenPrivateKey->isChecked()) {
// Generate new private key
- if (LDAPManager::generateClientCertificatePrivateKey(m_base->certPrivateKeyFileName->url(), &errorstring) != 0) {
+ // FIXME
+ // Make RSA private key length user-configurable (currently locked to 2048 bits)
+ if (LDAPManager::generateClientCertificatePrivateKey(m_base->certPrivateKeyFileName->url(), 2048, &errorstring) != 0) {
KMessageBox::sorry(this, i18n("<qt><b>Unable to generate new private key</b><p>Details: %1</qt>").arg(errorstring), i18n("Unable to Obtain Certificate"));
return;
}