diff options
Diffstat (limited to 'kex.h')
-rw-r--r-- | kex.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -29,6 +29,17 @@ | |||
29 | #ifndef KEX_H | 29 | #ifndef KEX_H |
30 | #define KEX_H | 30 | #define KEX_H |
31 | 31 | ||
32 | #include "config.h" | ||
33 | |||
34 | #ifdef HAVE_OPENSSL | ||
35 | # include <openssl/bn.h> | ||
36 | # include <openssl/evp.h> | ||
37 | #endif | ||
38 | #ifdef HAVE_SSL | ||
39 | # include <ssl/bn.h> | ||
40 | # include <ssl/evp.h> | ||
41 | #endif | ||
42 | |||
32 | #define KEX_DH1 "diffie-hellman-group1-sha1" | 43 | #define KEX_DH1 "diffie-hellman-group1-sha1" |
33 | #define KEX_DSS "ssh-dss" | 44 | #define KEX_DSS "ssh-dss" |
34 | 45 | ||