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

Diff for /src/usr.bin/ssh/Attic/kexc25519c.c between version 1.7 and 1.8

version 1.7, 2015/01/26 06:10:03 version 1.8, 2017/05/31 04:17:12
Line 42 
Line 42 
 #include "ssherr.h"  #include "ssherr.h"
   
 static int  static int
 input_kex_c25519_reply(int type, u_int32_t seq, void *ctxt);  input_kex_c25519_reply(int type, u_int32_t seq, struct ssh *ssh);
   
 int  int
 kexc25519_client(struct ssh *ssh)  kexc25519_client(struct ssh *ssh)
Line 67 
Line 67 
 }  }
   
 static int  static int
 input_kex_c25519_reply(int type, u_int32_t seq, void *ctxt)  input_kex_c25519_reply(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         struct ssh *ssh = ctxt;  
         struct kex *kex = ssh->kex;          struct kex *kex = ssh->kex;
         struct sshkey *server_host_key = NULL;          struct sshkey *server_host_key = NULL;
         struct sshbuf *shared_secret = NULL;          struct sshbuf *shared_secret = NULL;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8