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

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

version 1.10, 2015/12/04 16:41:28 version 1.11, 2017/05/31 04:19:28
Line 39 
Line 39 
 #include "sshbuf.h"  #include "sshbuf.h"
 #include "ssherr.h"  #include "ssherr.h"
   
 static int input_kex_c25519_init(int, u_int32_t, void *);  static int input_kex_c25519_init(int, u_int32_t, struct ssh *);
   
 int  int
 kexc25519_server(struct ssh *ssh)  kexc25519_server(struct ssh *ssh)
Line 50 
Line 50 
 }  }
   
 static int  static int
 input_kex_c25519_init(int type, u_int32_t seq, void *ctxt)  input_kex_c25519_init(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_private, *server_host_public;          struct sshkey *server_host_private, *server_host_public;
         struct sshbuf *shared_secret = NULL;          struct sshbuf *shared_secret = NULL;

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