bump ssl cert key size up to 2048 from 1024. fixes #126
This commit is contained in:
parent
a381347233
commit
9e2fbe269d
|
@ -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()) {
|
||||
|
|
Loading…
Reference in New Issue