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 596e41553c)
This commit is contained in:
Nicki Křížek 2026-06-16 17:54:56 +02:00
parent cad0939602
commit 9d5b97db80

View file

@ -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,