diff options
author | Damien Miller <djm@mindrot.org> | 2000-04-06 04:32:37 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-04-06 04:32:37 +0200 |
commit | 1383bd8eb91a8ec9c8d283679faec5925b0ccc42 (patch) | |
tree | f71278df6c50983ea3dad850ae79c45c340d9362 /kex.h | |
parent | - Generate manpages before make install not at the end of make all (diff) | |
download | openssh-1383bd8eb91a8ec9c8d283679faec5925b0ccc42.tar.xz openssh-1383bd8eb91a8ec9c8d283679faec5925b0ccc42.zip |
- OpenBSD CVS update:
- [channels.c]
close efd on eof
- [clientloop.c compat.c ssh.c sshconnect.c myproposal.h]
ssh2 client implementation, interops w/ ssh.com and lsh servers.
- [sshconnect.c]
missing free.
- [authfile.c cipher.c cipher.h packet.c sshconnect.c sshd.c]
remove unused argument, split cipher_mask()
- [clientloop.c]
re-order: group ssh1 vs. ssh2
- Make Redhat spec require openssl >= 0.9.5a
Diffstat (limited to 'kex.h')
-rw-r--r-- | kex.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -29,6 +29,17 @@ #ifndef KEX_H #define KEX_H +#include "config.h" + +#ifdef HAVE_OPENSSL +# include <openssl/bn.h> +# include <openssl/evp.h> +#endif +#ifdef HAVE_SSL +# include <ssl/bn.h> +# include <ssl/evp.h> +#endif + #define KEX_DH1 "diffie-hellman-group1-sha1" #define KEX_DSS "ssh-dss" |