Hardcode DH parameters

openssl version in ubuntu 22.04 forbids moduli smaller than 512,
which would take longer to generate.
This commit is contained in:
2022-11-18 18:57:51 +01:00
parent fd0b050686
commit 29e4c2bbdb

View File

@ -7,6 +7,7 @@ import shutil
import socket import socket
import subprocess import subprocess
import tempfile import tempfile
import textwrap
import time import time
from typing import IO, Any, Callable, Dict, List, Optional, Set, Tuple, Type from typing import IO, Any, Callable, Dict, List, Optional, Set, Tuple, Type
@ -156,10 +157,18 @@ class DirectoryBasedController(_BaseController):
], ],
stderr=subprocess.DEVNULL, stderr=subprocess.DEVNULL,
) )
subprocess.check_output( with self.dh_path.open("w") as fd:
[self.openssl_bin, "dhparam", "-out", self.dh_path, "128"], fd.write(
stderr=subprocess.DEVNULL, textwrap.dedent(
) """
-----BEGIN DH PARAMETERS-----
MIGHAoGBAJICSyQAiLj1fw8b5xELcnpqBQ+wvOyKgim4IetWOgZnRQFkTgOeoRZD
HksACRFJL/EqHxDKcy/2Ghwr2axhNxSJ+UOBmraP3WfodV/fCDPnZ+XnI9fjHsIr
rjisPMqomjXeiTB1UeAHvLUmCK4yx6lpAJsCYwJjsqkycUfHiy1bAgEC
-----END DH PARAMETERS-----
"""
)
)
class BaseClientController(_BaseController): class BaseClientController(_BaseController):