From 29e4c2bbdbb2fa7218e5d903c7a1b6dba3700b91 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 18 Nov 2022 18:57:51 +0100 Subject: [PATCH] Hardcode DH parameters openssl version in ubuntu 22.04 forbids moduli smaller than 512, which would take longer to generate. --- irctest/basecontrollers.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/irctest/basecontrollers.py b/irctest/basecontrollers.py index 864b905..8ada1cb 100644 --- a/irctest/basecontrollers.py +++ b/irctest/basecontrollers.py @@ -7,6 +7,7 @@ import shutil import socket import subprocess import tempfile +import textwrap import time from typing import IO, Any, Callable, Dict, List, Optional, Set, Tuple, Type @@ -156,10 +157,18 @@ class DirectoryBasedController(_BaseController): ], stderr=subprocess.DEVNULL, ) - subprocess.check_output( - [self.openssl_bin, "dhparam", "-out", self.dh_path, "128"], - stderr=subprocess.DEVNULL, - ) + with self.dh_path.open("w") as fd: + fd.write( + textwrap.dedent( + """ + -----BEGIN DH PARAMETERS----- + MIGHAoGBAJICSyQAiLj1fw8b5xELcnpqBQ+wvOyKgim4IetWOgZnRQFkTgOeoRZD + HksACRFJL/EqHxDKcy/2Ghwr2axhNxSJ+UOBmraP3WfodV/fCDPnZ+XnI9fjHsIr + rjisPMqomjXeiTB1UeAHvLUmCK4yx6lpAJsCYwJjsqkycUfHiy1bAgEC + -----END DH PARAMETERS----- + """ + ) + ) class BaseClientController(_BaseController):