[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.50 and 1.51

version 1.50, 2010/08/31 11:54:45 version 1.51, 2010/09/09 10:45:45
Line 38 
Line 38 
 #define KEX_DHGEX_SHA256        "diffie-hellman-group-exchange-sha256"  #define KEX_DHGEX_SHA256        "diffie-hellman-group-exchange-sha256"
 #define KEX_RESUME              "resume@appgate.com"  #define KEX_RESUME              "resume@appgate.com"
 /* The following represents the family of ECDH methods */  /* The following represents the family of ECDH methods */
 #define KEX_ECDH_SHA256         "ecdh-sha2-"  #define KEX_ECDH_SHA2_STEM      "ecdh-sha2-"
   
 #define COMP_NONE       0  #define COMP_NONE       0
 #define COMP_ZLIB       1  #define COMP_ZLIB       1
Line 164 
Line 164 
     const BIGNUM *, u_char **, u_int *);      const BIGNUM *, u_char **, u_int *);
   
 int     kex_ecdh_name_to_nid(const char *);  int     kex_ecdh_name_to_nid(const char *);
   const EVP_MD *kex_ecdh_name_to_evpmd(const char *);
   
 void  void
 derive_ssh1_session_id(BIGNUM *, BIGNUM *, u_int8_t[8], u_int8_t[16]);  derive_ssh1_session_id(BIGNUM *, BIGNUM *, u_int8_t[8], u_int8_t[16]);

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51