Merge pull request #1330 from cisagov/dk/digest-type-hotfix

fixed digest type choices in dnssec
This commit is contained in:
dave-kennedy-ecs 2023-11-14 14:21:50 -05:00 committed by GitHub
commit 778fbdb737
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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