From 7d8a09f514876bd2d928366948244f400b718b0c Mon Sep 17 00:00:00 2001 From: Jamie Newbon Date: Wed, 9 Oct 2019 16:49:34 +0100 Subject: [PATCH] #6561 Increased SSL keysize and SHA algorithm --- src/gui/src/SslCertificate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/src/SslCertificate.cpp b/src/gui/src/SslCertificate.cpp index 1ea4b259..777d4fd4 100644 --- a/src/gui/src/SslCertificate.cpp +++ b/src/gui/src/SslCertificate.cpp @@ -25,8 +25,8 @@ -static const char kCertificateKeyLength[] = "rsa:1024"; //RSA Bit length (e.g. 1024/2048/4096) -static const char kCertificateHashAlgorithm[] = "-sha1"; //fingerprint hashing algorithm +static const char kCertificateKeyLength[] = "rsa:2048"; //RSA Bit length (e.g. 1024/2048/4096) +static const char kCertificateHashAlgorithm[] = "-sha256"; //fingerprint hashing algorithm static const char kCertificateLifetime[] = "365"; static const char kCertificateSubjectInfo[] = "/CN=Synergy"; static const char kCertificateFilename[] = "Synergy.pem";