mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-15 09:10:51 -04:00
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:
parent
cad0939602
commit
9d5b97db80
1 changed files with 2 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue