[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.108 and 1.109

version 1.108, 2019/09/06 03:30:42 version 1.109, 2019/09/06 05:23:55
Line 29 
Line 29 
 #include "mac.h"  #include "mac.h"
 #include "crypto_api.h"  #include "crypto_api.h"
   
   #ifdef WITH_OPENSSL
   #include <openssl/bn.h>
   #include <openssl/dh.h>
   #include <openssl/ec.h>
   #include <openssl/ecdsa.h>
   #else /* OPENSSL */
   #define BIGNUM          void
   #define DH              void
   #define EC_KEY          void
   #define EC_GROUP        void
   #endif /* WITH_OPENSSL */
   
 #define KEX_COOKIE_LEN  16  #define KEX_COOKIE_LEN  16
   
 #define KEX_DH1                         "diffie-hellman-group1-sha1"  #define KEX_DH1                         "diffie-hellman-group1-sha1"

Legend:
Removed from v.1.108  
changed lines
  Added in v.1.109