mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Change fallback keysize to 2048
This commit is contained in:
parent
b3cda3f45c
commit
5741eace29
@ -10,6 +10,9 @@
|
|||||||
|
|
||||||
2009-11-04 Werner Koch <wk@g10code.com>
|
2009-11-04 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* certreqgen.c (proc_parameters): Change fallback key length to
|
||||||
|
2048.
|
||||||
|
|
||||||
* server.c (register_commands): Add help arg to
|
* server.c (register_commands): Add help arg to
|
||||||
assuan_register_command. Provide help strings for all commands.
|
assuan_register_command. Provide help strings for all commands.
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ The format of the native parameter file is follows:
|
|||||||
This is a required parameter. For now the only supported
|
This is a required parameter. For now the only supported
|
||||||
algorithm is "rsa".
|
algorithm is "rsa".
|
||||||
Key-Length: <length-in-bits>
|
Key-Length: <length-in-bits>
|
||||||
Length of the key in bits. Default is 1024.
|
Length of the key in bits. Default is 2048.
|
||||||
Key-Grip: hexstring
|
Key-Grip: hexstring
|
||||||
This is optional and used to generate a request for an already
|
This is optional and used to generate a request for an already
|
||||||
existing key. Key-Length will be ignored when given,
|
existing key. Key-Length will be ignored when given,
|
||||||
@ -83,7 +83,7 @@ Here is an example:
|
|||||||
$ cat >foo <<EOF
|
$ cat >foo <<EOF
|
||||||
%echo Generating a standard key
|
%echo Generating a standard key
|
||||||
Key-Type: RSA
|
Key-Type: RSA
|
||||||
Key-Length: 1024
|
Key-Length: 2048
|
||||||
Name-DN: CN=test cert 1,OU=Aegypten Project,O=g10 Code GmbH,L=Düsseldorf,C=DE
|
Name-DN: CN=test cert 1,OU=Aegypten Project,O=g10 Code GmbH,L=Düsseldorf,C=DE
|
||||||
Name-Email: joe@foo.bar
|
Name-Email: joe@foo.bar
|
||||||
# Do a commit here, so that we can later print "done" :-)
|
# Do a commit here, so that we can later print "done" :-)
|
||||||
@ -477,7 +477,7 @@ proc_parameters (ctrl_t ctrl,
|
|||||||
|
|
||||||
/* Check the keylength. */
|
/* Check the keylength. */
|
||||||
if (!get_parameter (para, pKEYLENGTH, 0))
|
if (!get_parameter (para, pKEYLENGTH, 0))
|
||||||
nbits = 1024;
|
nbits = 2048;
|
||||||
else
|
else
|
||||||
nbits = get_parameter_uint (para, pKEYLENGTH);
|
nbits = get_parameter_uint (para, pKEYLENGTH);
|
||||||
if ((nbits < 1024 || nbits > 4096) && !cardkeyid)
|
if ((nbits < 1024 || nbits > 4096) && !cardkeyid)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user