From c459de830f2fa96c79e283f75c9fb02dc056c7d3 Mon Sep 17 00:00:00 2001 From: David Blacka Date: Thu, 3 Feb 2011 20:29:54 +0000 Subject: [PATCH] update jdnssec-keygen to use a default algorithm of 8 instead of 5. git-svn-id: https://svn.verisignlabs.com/jdnssec/tools/trunk@238 4cbd57fe-54e5-0310-bd9a-f30fe5ea5e6e --- ChangeLog | 8 ++++++++ src/com/verisignlabs/dnssec/cl/KeyGen.java | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 17d2904..325b034 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-02-03 Blacka + + * Update logging across all command line tools to use a consistent + '-v' option, and consistent, simpler log formatting. + * jdnssec-verifyzone: resume logging the key information at INFO, + but make the default log level WARNING. To see the old logging + behavior, use -v 4. + 2011-02-02 Blacka * DnsKeyConverter: support the new BIND 9.7 private key format, diff --git a/src/com/verisignlabs/dnssec/cl/KeyGen.java b/src/com/verisignlabs/dnssec/cl/KeyGen.java index 2d8a871..e4751eb 100644 --- a/src/com/verisignlabs/dnssec/cl/KeyGen.java +++ b/src/com/verisignlabs/dnssec/cl/KeyGen.java @@ -50,7 +50,7 @@ public class KeyGen private static class CLIState { private Options opts; - public int algorithm = 5; + public int algorithm = 8; public int keylength = 1024; public boolean useLargeE = true; public String outputfile = null;