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

Diff for /src/usr.bin/ssh/kex.h between version 1.101 and 1.102

version 1.101, 2019/01/21 10:28:01 version 1.102, 2019/01/21 10:29:56
Line 200 
Line 200 
     struct sshbuf **);      struct sshbuf **);
 int      kex_dh_dec(struct kex *, const u_char *, size_t, struct sshbuf **);  int      kex_dh_dec(struct kex *, const u_char *, size_t, struct sshbuf **);
   
   int      kex_ecdh_keypair(struct kex *);
   int      kex_ecdh_enc(struct kex *, const u_char *, size_t, struct sshbuf **,
       struct sshbuf **);
   int      kex_ecdh_dec(struct kex *, const u_char *, size_t, struct sshbuf **);
   
 int      kex_c25519_keypair(struct kex *);  int      kex_c25519_keypair(struct kex *);
 int      kex_c25519_enc(struct kex *, const u_char *, size_t, struct sshbuf **,  int      kex_c25519_enc(struct kex *, const u_char *, size_t, struct sshbuf **,
     struct sshbuf **);      struct sshbuf **);
Line 220 
Line 225 
     const BIGNUM *, const BIGNUM *, const BIGNUM *,      const BIGNUM *, const BIGNUM *, const BIGNUM *,
     const BIGNUM *, const u_char *, size_t,      const BIGNUM *, const u_char *, size_t,
     u_char *, size_t *);      u_char *, size_t *);
   
 int kex_ecdh_hash(int, const EC_GROUP *,  
     const struct sshbuf *, const struct sshbuf *,  
     const u_char *, size_t, const u_char *, size_t, const u_char *, size_t,  
     const EC_POINT *, const EC_POINT *, const BIGNUM *, u_char *, size_t *);  
   
 int      kex_c25519_hash(int, const struct sshbuf *, const struct sshbuf *,  int      kex_c25519_hash(int, const struct sshbuf *, const struct sshbuf *,
     const u_char *, size_t, const u_char *, size_t,      const u_char *, size_t, const u_char *, size_t,

Legend:
Removed from v.1.101  
changed lines
  Added in v.1.102