From 69ac6108e4e7cb6789e3543ebcc53060030231ea Mon Sep 17 00:00:00 2001 From: Veegish Ramdani Date: Fri, 30 Aug 2024 23:02:19 +0400 Subject: [PATCH] feat: Add new IANA Trust Anchor --- src/prove.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/prove.ts b/src/prove.ts index a5cd430..436a31d 100644 --- a/src/prove.ts +++ b/src/prove.ts @@ -32,6 +32,21 @@ export const DEFAULT_TRUST_ANCHORS: packet.Ds[] = [ ), }, }, + { + name: '.', + type: 'DS', + class: 'IN', + data: { + keyTag: 38696, + algorithm: 8, + digestType: 2, + digest: Buffer.from( + '683D2D0ACB8C9B712A1948B27F741219298D0A450D612C483AF444A4C0FB2B16', + 'hex', + ), + }, + }, + ] function encodeURLParams(p: { [key: string]: string }): string {