[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.305 and 1.306

version 1.305, 2017/06/28 01:09:22 version 1.306, 2017/07/01 13:50:45
Line 32 
Line 32 
   
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "sshkey.h"  #include "sshkey.h"
 #include "rsa.h"  
 #include "authfile.h"  #include "authfile.h"
 #include "uuencode.h"  #include "uuencode.h"
 #include "sshbuf.h"  #include "sshbuf.h"
Line 518 
Line 517 
                 buffer_get_bignum_bits(b, key->rsa->iqmp);                  buffer_get_bignum_bits(b, key->rsa->iqmp);
                 buffer_get_bignum_bits(b, key->rsa->q);                  buffer_get_bignum_bits(b, key->rsa->q);
                 buffer_get_bignum_bits(b, key->rsa->p);                  buffer_get_bignum_bits(b, key->rsa->p);
                 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)                  if ((r = ssh_rsa_generate_additional_parameters(key)) != 0)
                         fatal("generate RSA parameters failed: %s", ssh_err(r));                          fatal("generate RSA parameters failed: %s", ssh_err(r));
                 break;                  break;
         }          }

Legend:
Removed from v.1.305  
changed lines
  Added in v.1.306