View | Details | Raw Unified | Return to bug 1119
Collapse All | Expand All

(-)openssh-4.2p1/ssh-keygen.1 (-1 / +1 lines)
Lines 187-193 Link Here
187
Show the bubblebabble digest of specified private or public key file.
187
Show the bubblebabble digest of specified private or public key file.
188
.It Fl b Ar bits
188
.It Fl b Ar bits
189
Specifies the number of bits in the key to create.
189
Specifies the number of bits in the key to create.
190
Minimum is 512 bits.
190
Minimum is 1024 bits.
191
Generally, 2048 bits is considered sufficient.
191
Generally, 2048 bits is considered sufficient.
192
The default is 2048 bits.
192
The default is 2048 bits.
193
.It Fl C Ar comment
193
.It Fl C Ar comment
(-)openssh-4.2p1/ssh-keygen.c (-1 / +1 lines)
Lines 1041-1047 Link Here
1041
           "degiqpclBHvxXyF:b:f:t:U:D:P:N:C:r:g:R:T:G:M:S:a:W:")) != -1) {
1041
           "degiqpclBHvxXyF:b:f:t:U:D:P:N:C:r:g:R:T:G:M:S:a:W:")) != -1) {
1042
               switch (opt) {
1042
               switch (opt) {
1043
               case 'b':
1043
               case 'b':
1044
                       bits = strtonum(optarg, 512, 32768, &errstr);
1044
                       bits = strtonum(optarg, 1024, 32768, &errstr);
1045
                       if (errstr)
1045
                       if (errstr)
1046
                               fatal("Bits has bad value %s (%s)",
1046
                               fatal("Bits has bad value %s (%s)",
1047
                                       optarg, errstr);
1047
                                       optarg, errstr);

Return to bug 1119