mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
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:
@ -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):
|
||||||
|
Reference in New Issue
Block a user