[git] GnuPG - branch, STABLE-BRANCH-2-0, updated. gnupg-2.0.21-9-g0f18295
by Werner Koch
cvs at cvs.gnupg.org
Fri Aug 30 10:48:37 CEST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".
The branch, STABLE-BRANCH-2-0 has been updated
via 0f18295ac83e0533f30b65a14bb04bd94f1627fe (commit)
from 4d93e5e3cfb5e017bcdf58e8e9ecce11a2870192 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0f18295ac83e0533f30b65a14bb04bd94f1627fe
Author: Werner Koch <wk at gnupg.org>
Date: Fri Aug 30 10:19:47 2013 +0200
gpg: Use 2048 as the default keysize in batch mode.
* g10/keygen.c (gen_elg, gen_dsa, gen_rsa): Set default keysize to
2048.
Signed-off-by: Werner Koch <wk at gnupg.org>
diff --git a/g10/keygen.c b/g10/keygen.c
index 8c3e9f6..b68414a 100644
--- a/g10/keygen.c
+++ b/g10/keygen.c
@@ -1170,12 +1170,12 @@ gen_elg (int algo, unsigned int nbits,
PKT_public_key *pk;
gcry_sexp_t s_parms, s_key;
gcry_sexp_t misc_key_info;
-
+
assert( is_ELGAMAL(algo) );
if (nbits < 512)
{
- nbits = 1024;
+ nbits = 2048;
log_info (_("keysize invalid; using %u bits\n"), nbits );
}
@@ -1284,9 +1284,9 @@ gen_dsa (unsigned int nbits, KBNODE pub_root, KBNODE sec_root, DEK *dek,
gcry_sexp_t misc_key_info;
unsigned int qbits;
- if ( nbits < 512)
+ if ( nbits < 512)
{
- nbits = 1024;
+ nbits = 2048;
log_info(_("keysize invalid; using %u bits\n"), nbits );
}
else if ( nbits > 3072 )
@@ -1435,12 +1435,12 @@ gen_rsa (int algo, unsigned nbits, KBNODE pub_root, KBNODE sec_root, DEK *dek,
if (!nbits)
nbits = DEFAULT_STD_KEYSIZE;
- if (nbits < 1024)
+ if (nbits < 1024)
{
- nbits = 1024;
+ nbits = 2048;
log_info (_("keysize invalid; using %u bits\n"), nbits );
}
-
+
if ((nbits % 32))
{
nbits = ((nbits + 31) / 32) * 32;
-----------------------------------------------------------------------
Summary of changes:
g10/keygen.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list