From: Kees Monshouwer Date: Fri, 18 Mar 2016 15:36:58 +0000 (+0100) Subject: expose CSK flags in secure zone output X-Git-Tag: dnsdist-1.0.0-beta1~23^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b29f7d10690003ba418aa7a0a27974cf79e0600;p=pdns expose CSK flags in secure zone output #Please enter the commit message for your changes. Lines star --- 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);