[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.14 and 1.15

version 1.14, 1999/11/24 19:53:44 version 1.15, 1999/12/02 20:17:49
Line 255 
Line 255 
   
                 /* check the real bits  */                  /* check the real bits  */
                 if (bits != BN_num_bits(n))                  if (bits != BN_num_bits(n))
                         error("Warning: error in %s, line %ld: keysize mismatch: "                          log("Warning: %s, line %ld: keysize mismatch: "
                               "actual size %d vs. announced %d.",                              "actual %d vs. announced %d.",
                               file, linenum, BN_num_bits(n), bits);                              file, linenum, BN_num_bits(n), bits);
   
                 /* Check if the we have found the desired key (identified by its modulus). */                  /* Check if the we have found the desired key (identified by its modulus). */
                 if (BN_cmp(n, client_n) != 0)                  if (BN_cmp(n, client_n) != 0)

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15