[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.29 and 1.31

version 1.29, 2000/07/15 04:01:37 version 1.31, 2000/09/07 20:27:54
Line 2 
Line 2 
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
  *                    All rights reserved   *                    All rights reserved
  * Created: Mon Mar 27 02:26:40 1995 ylo  
  * Identity and host key generation and maintenance.   * Identity and host key generation and maintenance.
    *
    * As far as I am concerned, the code I have written for this software
    * can be used freely for any purpose.  Any derived versions of this
    * software must be clearly marked as such, and if the derived work is
    * incompatible with the protocol description in the RFC file, it must be
    * called by a name other than "ssh" or "Secure Shell".
  */   */
   
 #include "includes.h"  #include "includes.h"
Line 16 
Line 21 
   
 #include "ssh.h"  #include "ssh.h"
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "fingerprint.h"  
 #include "key.h"  #include "key.h"
 #include "rsa.h"  #include "rsa.h"
 #include "dsa.h"  #include "dsa.h"
Line 224 
Line 228 
 void  void
 do_fingerprint(struct passwd *pw)  do_fingerprint(struct passwd *pw)
 {  {
           /* XXX RSA1 only */
   
         FILE *f;          FILE *f;
         BIGNUM *e, *n;  
         Key *public;          Key *public;
         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;
Line 245 
Line 250 
                 key_free(public);                  key_free(public);
                 exit(0);                  exit(0);
         }          }
         key_free(public);  
   
         /* XXX */  
         f = fopen(identity_file, "r");          f = fopen(identity_file, "r");
         if (f != NULL) {          if (f != NULL) {
                 n = BN_new();  
                 e = BN_new();  
                 while (fgets(line, sizeof(line), f)) {                  while (fgets(line, sizeof(line), f)) {
                         i = strlen(line) - 1;                          i = strlen(line) - 1;
                         if (line[i] != '\n') {                          if (line[i] != '\n') {
Line 286 
Line 287 
                                 *cp++ = '\0';                                  *cp++ = '\0';
                         }                          }
                         ep = cp;                          ep = cp;
                         if (auth_rsa_read_key(&cp, &ignore, e, n)) {                          if (auth_rsa_read_key(&cp, &ignore, public->rsa->e, public->rsa->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", key_size(public),
                                     fingerprint(e, n),                                      key_fingerprint(public),
                                     comment ? comment : "no comment");                                      comment ? comment : "no comment");
                         }                          }
                 }                  }
                 BN_free(e);  
                 BN_free(n);  
                 fclose(f);                  fclose(f);
         }          }
           key_free(public);
         if (invalid) {          if (invalid) {
                 printf("%s is not a valid key file.\n", identity_file);                  printf("%s is not a valid key file.\n", identity_file);
                 exit(1);                  exit(1);

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.31