Skip to content

Commit

Permalink
bump ssl cert key size up to 2048 from 1024. fixes #126
Browse files Browse the repository at this point in the history
  • Loading branch information
walker0643 committed Sep 7, 2018
1 parent a381347 commit 9e2fbe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/src/SslCertificate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit 9e2fbe2

Please sign in to comment.