[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.16 and 1.17

version 1.16, 2000/02/04 14:34:09 version 1.17, 2000/03/16 20:56:14
Line 81 
Line 81 
         RSA *public_key;          RSA *public_key;
         char *comment = NULL, *cp, *ep, line[16*1024];          char *comment = NULL, *cp, *ep, line[16*1024];
         int i, skip = 0, num = 1, invalid = 1;          int i, skip = 0, num = 1, invalid = 1;
           unsigned int ignore;
         struct stat st;          struct stat st;
   
         if (!have_identity)          if (!have_identity)
Line 138 
Line 139 
                                 *cp++ = '\0';                                  *cp++ = '\0';
                         }                          }
                         ep = cp;                          ep = cp;
                         if (auth_rsa_read_key(&cp, &i, e, n)) {                          if (auth_rsa_read_key(&cp, &ignore, e, n)) {
                                 invalid = 0;                                  invalid = 0;
                                 comment = *cp ? cp : comment;                                  comment = *cp ? cp : comment;
                                 printf("%d %s %s\n", BN_num_bits(n),                                  printf("%d %s %s\n", BN_num_bits(n),

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17