From 1b29f7d10690003ba418aa7a0a27974cf79e0600 Mon Sep 17 00:00:00 2001 From: Kees Monshouwer Date: Fri, 18 Mar 2016 16:36:58 +0100 Subject: [PATCH] expose CSK flags in secure zone output #Please enter the commit message for your changes. Lines star --- pdns/pdnsutil.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/pdnsutil.cc b/pdns/pdnsutil.cc index 710da1b6c..dc7bb2524 100644 --- a/pdns/pdnsutil.cc +++ b/pdns/pdnsutil.cc @@ -1671,7 +1671,7 @@ bool secureZone(DNSSECKeeper& dk, const DNSName& zone) for(auto &k_algo: k_algos) { - cout << "Adding "<<(z_algos.empty()? "CSK" : "KSK")<<" with algorithm " << k_algo << endl; + cout << "Adding "<<(z_algos.empty()? "CSK (257)" : "KSK")<<" with algorithm " << k_algo << endl; int algo = DNSSECKeeper::shorthand2algorithm(k_algo); @@ -1686,7 +1686,7 @@ bool secureZone(DNSSECKeeper& dk, const DNSName& zone) for(auto &z_algo : z_algos) { - cout << "Adding "<<(k_algos.empty()? "CSK" : "ZSK")<<" with algorithm " << z_algo << endl; + cout << "Adding "<<(k_algos.empty()? "CSK (256)" : "ZSK")<<" with algorithm " << z_algo << endl; int algo = DNSSECKeeper::shorthand2algorithm(z_algo); -- 2.40.0