From 5fd2dd95564940d32df1354c88cebfe77ea55e15 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Mon, 19 Nov 2012 21:12:30 +0000 Subject: [PATCH] genssl: use DH params length of 2048 to appease the weechat idiots --- tools/genssl.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/genssl.sh.in b/tools/genssl.sh.in index 2e65f6553..fbdd7014b 100755 --- a/tools/genssl.sh.in +++ b/tools/genssl.sh.in @@ -7,7 +7,7 @@ echo "Generating self-signed certificate .. " openssl req -x509 -nodes -newkey rsa:1024 -keyout "${sysconfdir}"/ssl.key -out "${sysconfdir}"/ssl.cert echo "Generating Diffie-Hellman file for secure SSL/TLS negotiation .. " -openssl dhparam -out "${sysconfdir}"/dh.pem 1024 +openssl dhparam -out "${sysconfdir}"/dh.pem 2048 # If sysconfdir is relative to prefix, make the path relative. I.e., # prefix=/usr and sysconfdir=/etc -> relative_sysconfdir=/etc,