From: Nicki Křížek Date: Tue, 16 Jun 2026 15:54:56 +0000 (+0200) Subject: Add NSEC3RSASHA1 to list of algorithms X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=596e41553c95a8cb0d256521098959fe03a15a3c;p=thirdparty%2Fbind9.git 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. --- diff --git a/bin/tests/system/isctest/vars/algorithms.py b/bin/tests/system/isctest/vars/algorithms.py index 1ce16824812..0ff211da95a 100644 --- a/bin/tests/system/isctest/vars/algorithms.py +++ b/bin/tests/system/isctest/vars/algorithms.py @@ -87,6 +87,7 @@ class AlgorithmSet(NamedTuple): RSASHA1 = Algorithm("RSASHA1", 5, 5, 2048) +NSEC3RSASHA1 = Algorithm("NSEC3RSASHA1", 7, 7, 2048) RSASHA256 = Algorithm("RSASHA256", 8, 8, 2048) RSASHA512 = Algorithm("RSASHA512", 10, 10, 2048) ECDSAP256SHA256 = Algorithm("ECDSAP256SHA256", 13, 13, 256) @@ -98,6 +99,7 @@ RSASHA512OID = Algorithm("RSASHA512OID", 254, 257, 2048) ALL_ALGORITHMS = [ RSASHA1, + NSEC3RSASHA1, RSASHA256, RSASHA512, ECDSAP256SHA256,