]> granicus.if.org Git - pdns/commitdiff
pdnsutil: add algo 7 to add-zone-key help
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 15 Oct 2019 18:14:30 +0000 (20:14 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Tue, 15 Oct 2019 18:14:30 +0000 (20:14 +0200)
docs/manpages/pdnsutil.1.rst
pdns/pdnsutil.cc

index 72cdf6a7265eff7c777e6b6e027eecc6b9f2a831..ead77b09eeb8f34ea6516123a1345fb81e3fd8ee 100644 (file)
@@ -38,6 +38,7 @@ of these commands require an *ALGORITHM* to be set. The following
 algorithms are supported:
 
 -  rsasha1
+-  rsasha1-nsec3-sha1
 -  rsasha256
 -  rsasha512
 -  ecdsa256
index 106241b7b48ebdb60dfe5a4f68f115a66c6d95a8..c26b82aca1caa94eec39aa49dad359a6c8571a08 100644 (file)
@@ -1999,7 +1999,7 @@ try
     cout<<"add-record ZONE NAME TYPE [ttl] content"<<endl;
     cout<<"             [content..]           Add one or more records to ZONE"<<endl;
     cout<<"add-zone-key ZONE {zsk|ksk} [BITS] [active|inactive]"<<endl;
-    cout<<"             [rsasha1|rsasha256|rsasha512|ecdsa256|ecdsa384";
+    cout<<"             [rsasha1|rsasha1-nsec3-sha1|rsasha256|rsasha512|ecdsa256|ecdsa384";
 #if defined(HAVE_LIBSODIUM) || defined(HAVE_LIBDECAF)
     cout<<"|ed25519";
 #endif
@@ -2313,7 +2313,7 @@ try
   }
   else if(cmds[0] == "add-zone-key") {
     if(cmds.size() < 3 ) {
-      cerr << "Syntax: pdnsutil add-zone-key ZONE zsk|ksk [BITS] [active|inactive] [rsasha1|rsasha256|rsasha512|ecdsa256|ecdsa384";
+      cerr << "Syntax: pdnsutil add-zone-key ZONE zsk|ksk [BITS] [active|inactive] [rsasha1|rsasha1-nsec3-sha1|rsasha256|rsasha512|ecdsa256|ecdsa384";
 #if defined(HAVE_LIBSODIUM) || defined(HAVE_LIBDECAF)
       cerr << "|ed25519";
 #endif
@@ -2832,7 +2832,7 @@ try
   }
   else if(cmds[0] == "generate-zone-key") {
     if(cmds.size() < 2 ) {
-      cerr << "Syntax: pdnsutil generate-zone-key zsk|ksk [rsasha1|rsasha256|rsasha512|ecdsa256|ecdsa384";
+      cerr << "Syntax: pdnsutil generate-zone-key zsk|ksk [rsasha1|rsasha1-nsec3-sha1|rsasha256|rsasha512|ecdsa256|ecdsa384";
 #if defined(HAVE_LIBSODIUM) || defined(HAVE_LIBDECAF)
       cerr << "|ed25519";
 #endif