From 52aebdb99472a5f0fb0eb1781e635f89786659ad Mon Sep 17 00:00:00 2001 From: Rahul Golam Date: Sat, 31 Aug 2024 16:48:30 +0400 Subject: [PATCH 1/2] Add new IANA Trust Anchor --- EXAMPLES.md | 1 + src/test/resources/trust_anchors | 1 + 2 files changed, 2 insertions(+) diff --git a/EXAMPLES.md b/EXAMPLES.md index a6f6d4c6..733bada2 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -134,6 +134,7 @@ import org.xbill.DNS.*; public class ResolveExample { static String ROOT = ". IN DS 20326 8 2 E06D44B80B8F1D39A95C0B0D7C65D08458E880409BBC683457104237C7F8EC8D"; + //static String ROOT = ". IN DS 38696 8 2 683D2D0ACB8C9B712A1948B27F741219298D0A450D612C483AF444A4C0FB2B16"; public static void main(String[] args) throws Exception { // Send two sample queries using a standard resolver diff --git a/src/test/resources/trust_anchors b/src/test/resources/trust_anchors index 0c745850..85862773 100644 --- a/src/test/resources/trust_anchors +++ b/src/test/resources/trust_anchors @@ -1,3 +1,4 @@ . IN DS 19036 8 1 B256BD09DC8DD59F0E0F0D8541B8328DD986DF6E . IN DS 19036 8 2 49AAC11D7B6F6446702E54A1607371607A1A41855200FD2CE1CDDE32F24E8FB5 . IN DS 20326 8 2 E06D44B80B8F1D39A95C0B0D7C65D08458E880409BBC683457104237C7F8EC8D +. IN DS 38696 8 2 683D2D0ACB8C9B712A1948B27F741219298D0A450D612C483AF444A4C0FB2B16 From bb7b508451c077a2560147c6e7e3c25a4609090d Mon Sep 17 00:00:00 2001 From: Rahul Golam Date: Sat, 31 Aug 2024 16:59:17 +0400 Subject: [PATCH 2/2] Added comment --- EXAMPLES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/EXAMPLES.md b/EXAMPLES.md index 733bada2..894f1664 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -134,6 +134,7 @@ import org.xbill.DNS.*; public class ResolveExample { static String ROOT = ". IN DS 20326 8 2 E06D44B80B8F1D39A95C0B0D7C65D08458E880409BBC683457104237C7F8EC8D"; + // Below key activates in 2026. //static String ROOT = ". IN DS 38696 8 2 683D2D0ACB8C9B712A1948B27F741219298D0A450D612C483AF444A4C0FB2B16"; public static void main(String[] args) throws Exception {