]> granicus.if.org Git - pdns/commitdiff
expose CSK flags in secure zone output
authorKees Monshouwer <mind04@monshouwer.org>
Fri, 18 Mar 2016 15:36:58 +0000 (16:36 +0100)
committermind04 <mind04@monshouwer.org>
Tue, 5 Apr 2016 10:54:26 +0000 (12:54 +0200)
 #Please enter the commit message for your changes. Lines star

pdns/pdnsutil.cc

index 710da1b6cd850887c19f245e6c18cc6658eb3c1f..dc7bb2524625c7b12617c217ed01fb832dc64467 100644 (file)
@@ -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);