summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-12 23:15:13 +0100
committersarthurdev <965089+sarthurdev@users.noreply.github.com>2023-02-13 11:21:20 +0100
commit7bacde871bb9c94d302251a54886ce2aac6f329e (patch)
tree0f9d60ee35cca25e93958b33ecd4326dbb2619d6 /src
parentbd9416a6aa9d5d0a746dc2cebc8d0330fd27d1a2 (diff)
downloadvyos-1x-7bacde871bb9c94d302251a54886ce2aac6f329e.tar.gz
vyos-1x-7bacde871bb9c94d302251a54886ce2aac6f329e.zip
debian: T5003: Fixes for Debian Bookworm
* DH params of 256 length no longer supported
Diffstat (limited to 'src')
-rw-r--r--src/tests/test_configverify.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/tests/test_configverify.py b/src/tests/test_configverify.py
index ad7e053db..6fb43ece2 100644
--- a/src/tests/test_configverify.py
+++ b/src/tests/test_configverify.py
@@ -27,11 +27,6 @@ class TestDictSearch(TestCase):
def test_dh_key_none(self):
self.assertFalse(verify_diffie_hellman_length('/tmp/non_existing_file', '1024'))
- def test_dh_key_256(self):
- key_len = '256'
- cmd(f'openssl dhparam -out {dh_file} {key_len}')
- self.assertTrue(verify_diffie_hellman_length(dh_file, key_len))
-
def test_dh_key_512(self):
key_len = '512'
cmd(f'openssl dhparam -out {dh_file} {key_len}')