[BACK]Return to kexecdhc.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/kexecdhc.c between version 1.10 and 1.11

version 1.10, 2015/01/26 06:10:03 version 1.11, 2017/05/30 14:23:52
Line 45 
Line 45 
 #include "ssherr.h"  #include "ssherr.h"
 #include "sshbuf.h"  #include "sshbuf.h"
   
 static int input_kex_ecdh_reply(int, u_int32_t, void *);  static int input_kex_ecdh_reply(int, u_int32_t, struct ssh *);
   
 int  int
 kexecdh_client(struct ssh *ssh)  kexecdh_client(struct ssh *ssh)
Line 91 
Line 91 
 }  }
   
 static int  static int
 input_kex_ecdh_reply(int type, u_int32_t seq, void *ctxt)  input_kex_ecdh_reply(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         struct ssh *ssh = ctxt;  
         struct kex *kex = ssh->kex;          struct kex *kex = ssh->kex;
         const EC_GROUP *group;          const EC_GROUP *group;
         EC_POINT *server_public = NULL;          EC_POINT *server_public = NULL;

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11