From: Evan Hunt Date: Sat, 1 Mar 2014 05:09:24 +0000 (-0800) Subject: [master] add sha-384 to dnssec-checkds X-Git-Tag: v9.10.0b2~76 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=72aa3b2a4e33a1b9b3521fddce383002b7201ab7;p=thirdparty%2Fbind9.git [master] add sha-384 to dnssec-checkds 3768. [bug] "dnssec-checkds" was missing the SHA-384 digest algorithm. [RT #34000] --- diff --git a/CHANGES b/CHANGES index 1208bffc6bb..0249275da8e 100644 --- a/CHANGES +++ b/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] diff --git a/bin/python/dnssec-checkds.py.in b/bin/python/dnssec-checkds.py.in index b6dbdb19502..3a66ee24b4a 100644 --- a/bin/python/dnssec-checkds.py.in +++ b/bin/python/dnssec-checkds.py.in @@ -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'