[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.77 and 1.85

version 1.77, 2001/08/02 15:06:52 version 1.85, 2001/12/05 10:06:12
Line 159 
Line 159 
                         exit(1);                          exit(1);
                 }                  }
         }          }
         key_to_blob(k, &blob, &len);          if (key_to_blob(k, &blob, &len) <= 0) {
                   fprintf(stderr, "key_to_blob failed\n");
                   exit(1);
           }
         fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);          fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
         fprintf(stdout,          fprintf(stdout,
             "Comment: \"%d-bit %s, converted from OpenSSH by %s@%s\"\n",              "Comment: \"%d-bit %s, converted from OpenSSH by %s@%s\"\n",
Line 186 
Line 189 
 }  }
   
 static Key *  static Key *
 do_convert_private_ssh2_from_blob(char *blob, int blen)  do_convert_private_ssh2_from_blob(u_char *blob, int blen)
 {  {
         Buffer b;          Buffer b;
         Key *key = NULL;          Key *key = NULL;
Line 265 
Line 268 
                 break;                  break;
         }          }
         rlen = buffer_len(&b);          rlen = buffer_len(&b);
         if(rlen != 0)          if (rlen != 0)
                 error("do_convert_private_ssh2_from_blob: "                  error("do_convert_private_ssh2_from_blob: "
                     "remaining bytes in key blob %d", rlen);                      "remaining bytes in key blob %d", rlen);
         buffer_free(&b);          buffer_free(&b);
Line 283 
Line 286 
         Key *k;          Key *k;
         int blen;          int blen;
         char line[1024], *p;          char line[1024], *p;
         char blob[8096];          u_char blob[8096];
         char encoded[8096];          char encoded[8096];
         struct stat st;          struct stat st;
         int escaped = 0, private = 0, ok;          int escaped = 0, private = 0, ok;
Line 386 
Line 389 
                 debug("#bytes %d", len); \                  debug("#bytes %d", len); \
                 if (BN_bn2bin(prv->rsa->x, elements[i]) < 0) \                  if (BN_bn2bin(prv->rsa->x, elements[i]) < 0) \
                         goto done; \                          goto done; \
         } while(0)          } while (0)
   
 static int  static int
 get_AUT0(char *aut0)  get_AUT0(char *aut0)
Line 488 
Line 491 
         status = 0;          status = 0;
         log("loading key done");          log("loading key done");
 done:  done:
   
           memset(elements[0], '\0', BN_num_bytes(prv->rsa->q));
           memset(elements[1], '\0', BN_num_bytes(prv->rsa->p));
           memset(elements[2], '\0', BN_num_bytes(prv->rsa->iqmp));
           memset(elements[3], '\0', BN_num_bytes(prv->rsa->dmq1));
           memset(elements[4], '\0', BN_num_bytes(prv->rsa->dmp1));
           memset(elements[5], '\0', BN_num_bytes(prv->rsa->n));
   
         if (prv)          if (prv)
                 key_free(prv);                  key_free(prv);
         for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++)          for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++)
Line 511 
Line 522 
         fprintf(stdout, "\n");          fprintf(stdout, "\n");
         exit(0);          exit(0);
 }  }
 #endif  #endif /* SMARTCARD */
   
 static void  static void
 do_fingerprint(struct passwd *pw)  do_fingerprint(struct passwd *pw)
Line 519 
Line 530 
         FILE *f;          FILE *f;
         Key *public;          Key *public;
         char *comment = NULL, *cp, *ep, line[16*1024], *fp;          char *comment = NULL, *cp, *ep, line[16*1024], *fp;
         int i, skip = 0, num = 1, invalid = 1, rep, fptype;          int i, skip = 0, num = 1, invalid = 1;
           enum fp_rep rep;
           enum fp_type fptype;
         struct stat st;          struct stat st;
   
         fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;          fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
Line 600 
Line 613 
                 fclose(f);                  fclose(f);
         }          }
         if (invalid) {          if (invalid) {
                 printf("%s is not a valid key file.\n", identity_file);                  printf("%s is not a public key file.\n", identity_file);
                 exit(1);                  exit(1);
         }          }
         exit(0);          exit(0);
Line 938 
Line 951 
                         do_download(pw, reader_id);                          do_download(pw, reader_id);
                 else                  else
                         do_upload(pw, reader_id);                          do_upload(pw, reader_id);
 #else  #else /* SMARTCARD */
                 fatal("no support for smartcards.");                  fatal("no support for smartcards.");
 #endif  #endif /* SMARTCARD */
         }          }
   
         arc4random_stir();          arc4random_stir();

Legend:
Removed from v.1.77  
changed lines
  Added in v.1.85