Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
72aa3b2a
Commit
72aa3b2a
authored
Feb 28, 2014
by
Evan Hunt
Browse files
[master] add sha-384 to dnssec-checkds
3768. [bug] "dnssec-checkds" was missing the SHA-384 digest algorithm. [RT #34000]
parent
e23798e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
72aa3b2a
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]
...
...
bin/python/dnssec-checkds.py.in
View file @
72aa3b2a
...
...
@@ -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'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment