summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-06 12:32:37 +1000
committerDamien Miller <djm@mindrot.org>2000-04-06 12:32:37 +1000
commit1383bd8eb91a8ec9c8d283679faec5925b0ccc42 (patch)
treef71278df6c50983ea3dad850ae79c45c340d9362 /kex.h
parent74a333bbe11f67c59c559e0f424d5945eb438577 (diff)
- 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.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/kex.h b/kex.h
index f9e799948..81c41342a 100644
--- a/kex.h
+++ b/kex.h
@@ -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