summaryrefslogtreecommitdiff
path: root/src/src/tls-openssl.c
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-11-28 19:45:24 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2018-11-28 21:41:01 +0000
commit6aac3239b4ce9638c2c5647684dc4ff2a6afbb42 (patch)
tree26bd52d2d9ed2a04d5d50eabb6a39202c4460fb8 /src/src/tls-openssl.c
parentf94aac30115bc94f2a1c8e3536ad7d40e7e4f302 (diff)
downloadexim4-6aac3239b4ce9638c2c5647684dc4ff2a6afbb42.tar.gz
TLS: Increase RSA keysize of autogen selfsign cert
Diffstat (limited to 'src/src/tls-openssl.c')
-rw-r--r--src/src/tls-openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c
index 3299c2046..cd11f65df 100644
--- a/src/src/tls-openssl.c
+++ b/src/src/tls-openssl.c
@@ -1174,7 +1174,7 @@ if (!(x509 = X509_new()))
goto err;
where = US"generating pkey";
-if (!(rsa = rsa_callback(NULL, 0, 1024)))
+if (!(rsa = rsa_callback(NULL, 0, 2048)))
goto err;
where = US"assigning pkey";