aboutsummaryrefslogtreecommitdiffstats
path: root/main/dnssec-root/anchors2ds.xsl
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2018-10-19 13:23:16 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2018-10-19 14:08:14 +0200
commit01ae13d188cafc19691518a4814372729dec9877 (patch)
tree1130049d09fb67369cb5c67c7698226367300e54 /main/dnssec-root/anchors2ds.xsl
parent40dd9e5e3fda4124dff6086653473717da29961d (diff)
downloadaports-master.tar.bz2
aports-master.tar.xz
main/dnssec-root: upgrade to 20170203HEADmaster
This includes the new root trust anchor. I consider this superior to the solution provided in [1] as it uses a python tool recommended by the iana [2] for fetching the root trust anchors. This tool also takes care of verifying their accuracy by checking the S/MIME signature. See also #9552. [1]: https://github.com/alpinelinux/aports/pull/5400 [2]: https://github.com/iana-org/get-trust-anchor
Diffstat (limited to 'main/dnssec-root/anchors2ds.xsl')
-rw-r--r--main/dnssec-root/anchors2ds.xsl32
1 files changed, 0 insertions, 32 deletions
diff --git a/main/dnssec-root/anchors2ds.xsl b/main/dnssec-root/anchors2ds.xsl
deleted file mode 100644
index 3df47e2075..0000000000
--- a/main/dnssec-root/anchors2ds.xsl
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0"?>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:output method="text"/>
-
- <xsl:template match="/">
- <xsl:apply-templates/>
- </xsl:template>
-
- <xsl:template match="/TrustAnchor">
- <xsl:apply-templates select="Zone"/>
- <xsl:apply-templates select="KeyDigest"/>
- <xsl:text>
-</xsl:text>
- </xsl:template>
-
- <xsl:template match="KeyDigest">
- <xsl:apply-templates select="KeyTag"/>
- <xsl:apply-templates select="Algorithm"/>
- <xsl:apply-templates select="DigestType"/>
- <xsl:apply-templates select="Digest"/>
- </xsl:template>
-
- <xsl:template match="Zone">
- <xsl:value-of select="text()"/><xsl:text> IN DS </xsl:text>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:value-of select="text()"/><xsl:text> </xsl:text>
- </xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file