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

Diff for /src/usr.bin/ssh/myproposal.h between version 1.43 and 1.44

version 1.43, 2015/04/21 07:01:00 version 1.44, 2015/05/27 23:51:10
Line 26 
Line 26 
   
 #ifdef WITH_OPENSSL  #ifdef WITH_OPENSSL
   
 #define KEX_SERVER_KEX          \  #define KEX_COMMON_KEX          \
         "curve25519-sha256@libssh.org," \          "curve25519-sha256@libssh.org," \
         "ecdh-sha2-nistp256," \          "ecdh-sha2-nistp256," \
         "ecdh-sha2-nistp384," \          "ecdh-sha2-nistp384," \
         "ecdh-sha2-nistp521," \          "ecdh-sha2-nistp521," \
         "diffie-hellman-group-exchange-sha256," \          "diffie-hellman-group-exchange-sha256"
         "diffie-hellman-group14-sha1" \  
   
 #define KEX_CLIENT_KEX KEX_SERVER_KEX "," \  #define KEX_SERVER_KEX KEX_COMMON_KEX "," \
           "diffie-hellman-group14-sha1"
   
   #define KEX_CLIENT_KEX KEX_COMMON_KEX "," \
         "diffie-hellman-group-exchange-sha1," \          "diffie-hellman-group-exchange-sha1," \
           "diffie-hellman-group14-sha1," \
         "diffie-hellman-group1-sha1"          "diffie-hellman-group1-sha1"
   
 #define KEX_DEFAULT_PK_ALG      \  #define KEX_DEFAULT_PK_ALG      \

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44