mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 10:39:59 -04:00
[v9_9] add sha-384 to dnssec-checkds
3768. [bug] "dnssec-checkds" was missing the SHA-384 digest
algorithm. [RT #34000]
(cherry picked from commit 72aa3b2a4e)
This commit is contained in:
parent
51b67b2afa
commit
af719fc9d5
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
3768. [bug] "dnssec-checkds" was missing the SHA-384 digest
|
||||
algorithm. [RT #34000]
|
||||
|
||||
3767. [func] Log explicitly when using rndc.key to configure
|
||||
command channel. [RT #35316]
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ def shellquote(s):
|
|||
# Delegation Signer (DS) resource record
|
||||
############################################################################
|
||||
class DSRR:
|
||||
hashalgs = {1: 'SHA-1', 2: 'SHA-256', 3: 'GOST'}
|
||||
hashalgs = {1: 'SHA-1', 2: 'SHA-256', 3: 'GOST', 4: 'SHA-384' }
|
||||
rrname=''
|
||||
rrclass='IN'
|
||||
rrtype='DS'
|
||||
|
|
@ -107,7 +107,7 @@ class DSRR:
|
|||
# DNSSEC Lookaside Validation (DLV) resource record
|
||||
############################################################################
|
||||
class DLVRR:
|
||||
hashalgs = {1: 'SHA-1', 2: 'SHA-256', 3: 'GOST'}
|
||||
hashalgs = {1: 'SHA-1', 2: 'SHA-256', 3: 'GOST', 4: 'SHA-384' }
|
||||
parent=''
|
||||
dlvname=''
|
||||
rrname='IN'
|
||||
|
|
|
|||
Loading…
Reference in a new issue