Skip to content

Commit 16f8871

Browse files
bwbroersmamxsasha
authored andcommitted
Fix #1936 - Add new ACME validation methods onion-csr-01 and bp-nodeid-00
sed -i -rz 's/(\nACME_VALIDATION_METHODS = \{\n)[^}]+(\})/\1'"$(curl -sSf https://www.iana.org/assignments/acme/acme-validation-methods.csv|awk -F, 'NR>1&&$3=="Y"{if(!c[$1])printf " \"%s\",\\n",$1;c[$1]++}')"'\2/' checks/caa/parser.py
1 parent ad91c61 commit 16f8871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

checks/caa/parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ def node_get_named_child_value(node: Node, name: str) -> Optional[str]:
3838
ACME_VALIDATION_METHODS = {
3939
"http-01",
4040
"dns-01",
41-
"http-01",
42-
"tls-alpn-01",
4341
"tls-alpn-01",
4442
"email-reply-00",
4543
"tkauth-01",
44+
"onion-csr-01",
45+
"bp-nodeid-00",
4646
}
4747

4848
# RFC 8657 4

0 commit comments

Comments
 (0)