From 4d14ee60cde5058f06aeda204b9b7825cb475e3e Mon Sep 17 00:00:00 2001 From: Matthew Zipkin Date: Sun, 29 Mar 2020 18:03:22 -0400 Subject: [PATCH] Constants: recognize ZSK as keyFlag --- lib/constants.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/constants.js b/lib/constants.js index 7682f39..3dcc50c 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -503,7 +503,8 @@ const keyFlags = { SEP: 1 << 0, // 1-6 reserved REVOKE: 1 << 7, - ZONE: 1 << 8 + ZONE: 1 << 8, + ZSK: 1 << 8, // 9-15 reserved };