From 9d5b97db809f0436f9b31498fa83f5f2ead28d30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Tue, 16 Jun 2026 17:54:56 +0200 Subject: [PATCH] Add NSEC3RSASHA1 to list of algorithms This algorithm is deprecated and not currently used in our system tests, but it should be in the list of all algorithms. (cherry picked from commit 596e41553c95a8cb0d256521098959fe03a15a3c) --- bin/tests/system/isctest/vars/algorithms.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/tests/system/isctest/vars/algorithms.py b/bin/tests/system/isctest/vars/algorithms.py index ac8605896a..63b574965f 100644 --- a/bin/tests/system/isctest/vars/algorithms.py +++ b/bin/tests/system/isctest/vars/algorithms.py @@ -82,6 +82,7 @@ class AlgorithmSet(NamedTuple): RSASHA1 = Algorithm("RSASHA1", 5, 2048) +NSEC3RSASHA1 = Algorithm("NSEC3RSASHA1", 7, 2048) RSASHA256 = Algorithm("RSASHA256", 8, 2048) RSASHA512 = Algorithm("RSASHA512", 10, 2048) ECDSAP256SHA256 = Algorithm("ECDSAP256SHA256", 13, 256) @@ -91,6 +92,7 @@ ED448 = Algorithm("ED448", 16, 456) ALL_ALGORITHMS = [ RSASHA1, + NSEC3RSASHA1, RSASHA256, RSASHA512, ECDSAP256SHA256,