bump ssl cert key size up to 2048 from 1024. fixes #126

This commit is contained in:
walker0643 2018-09-07 18:14:03 -04:00
parent a381347233
commit 9e2fbe269d
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ void SslCertificate::generateCertificate()
// private key
arguments.append("-newkey");
arguments.append("rsa:1024");
arguments.append("rsa:2048");
QDir sslDir(sslDirPath);
if (!sslDir.exists()) {