From 745378a3290fe70dc38e7bd98ec34b740a0410a7 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Mon, 8 Apr 2013 19:22:46 +0100 Subject: Add support for generating dhparams with GnuTLS to genssl. --- tools/genssl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/genssl b/tools/genssl index 9bc66669f..b658efb11 100755 --- a/tools/genssl +++ b/tools/genssl @@ -1,4 +1,4 @@ -#!/usr/bin/env perl -w +#!/usr/bin/env perl # # InspIRCd -- Internet Relay Chat Daemon # @@ -85,6 +85,7 @@ __GNUTLS_END__ $status ||= system "$certtool --version >/dev/null 2>&1"; $status ||= system "$certtool --generate-privkey --outfile key.pem"; $status ||= system "$certtool --generate-self-signed --load-privkey key.pem --outfile cert.pem --template $tmp"; + $status ||= system "$certtool --generate-dh-params --bits 2048 --outfile dhparams.pem"; } elsif (lc $ARGV[0] eq 'openssl') { my $tmp = new File::Temp(); print $tmp <<__OPENSSL_END__; -- cgit v1.2.3