]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add NSEC3RSASHA1 to list of algorithms
authorNicki Křížek <nicki@isc.org>
Tue, 16 Jun 2026 15:54:56 +0000 (17:54 +0200)
committerNicki Křížek <nicki@isc.org>
Thu, 2 Jul 2026 12:51:41 +0000 (14:51 +0200)
This algorithm is deprecated and not currently used in our system tests,
but it should be in the list of all algorithms.

bin/tests/system/isctest/vars/algorithms.py

index 1ce16824812669f10f78a47a91d3e8151cda0c72..0ff211da95a37dd5aa62d0f393472fa2fcd45a31 100644 (file)
@@ -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,