fixed digest type choices in dnssec

This commit is contained in:
David Kennedy 2023-11-14 13:16:26 -05:00
parent dcbb54f799
commit 1c37a94f5c
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -21,6 +21,6 @@ ALGORITHM_CHOICES = [
# DIGEST_TYPE_CHOICES are options for digestType attribute in DS Data
# reference: https://datatracker.ietf.org/doc/html/rfc4034#appendix-A.2
DIGEST_TYPE_CHOICES = [
(0, "(0) Reserved"),
(1, "(1) SHA-256"),
(1, "(1) SHA-1"),
(2, "(2) SHA-256"),
]