[BACK]Return to ssh-keygen.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.328 and 1.329

version 1.328, 2019/03/25 15:49:00 version 1.329, 2019/03/25 16:19:44
Line 61 
Line 61 
 #endif  #endif
   
 /*  /*
  * Default number of bits in the RSA/DSA key.  This value can be overridden   * Default number of bits in the RSA, DSA and ECDSA keys.  These value can be
  * on the command line.   * overridden on the command line.
    *
    * These values, with the exception of DSA, provide security equivalent to at
    * least 128 bits of security according to NIST Special Publication 800-57:
    * Recommendation for Key Management Part 1 rev 4 section 5.6.1.
    * For DSA it (and FIPS-186-4 section 4.2) specifies that the only size for
    * which a 160bit hash is acceptable is 1kbit, and since ssh-dss specifies only
    * SHA1 we limit the DSA key size 1k bits.
  */   */
 #define DEFAULT_BITS            3072  #define DEFAULT_BITS            3072
 #define DEFAULT_BITS_DSA        1024  #define DEFAULT_BITS_DSA        1024

Legend:
Removed from v.1.328  
changed lines
  Added in v.1.329