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

Diff for /src/usr.bin/ssh/Attic/auth-rsa.c between version 1.55 and 1.56

version 1.55, 2002/03/29 19:18:33 version 1.56, 2002/06/10 16:53:06
Line 81 
Line 81 
   
         /* don't allow short keys */          /* don't allow short keys */
         if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {          if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
                 error("auth_rsa_verify_response: n too small: %d bits",                  error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits",
                     BN_num_bits(key->rsa->n));                      BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
                 return (0);                  return (0);
         }          }
   

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.56