summaryrefslogtreecommitdiff
path: root/cipher.h
diff options
context:
space:
mode:
authordamien <damien>1999-10-28 03:25:17 +0000
committerdamien <damien>1999-10-28 03:25:17 +0000
commita6565fe9d21935d575ca1df973c418ede8621f1d (patch)
treea30aa324db2b41c64e1216ce73b7b7468e5ff706 /cipher.h
parent8a50b213ba21be002f2eea1647a9f5fa1c2e5b93 (diff)
downloadopenssh-a6565fe9d21935d575ca1df973c418ede8621f1d.tar.gz
- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
- Build fixes - Autoconf - Change binary names to open* - Fixed autoconf script to detect PAM on RH6.1 - Added tests for libpwdb, and OpenBSD functions to autoconf (not used yet)
Diffstat (limited to 'cipher.h')
-rw-r--r--cipher.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/cipher.h b/cipher.h
index 4ecb8f8d..9c2a0b52 100644
--- a/cipher.h
+++ b/cipher.h
@@ -11,13 +11,21 @@ Created: Wed Apr 19 16:50:42 1995 ylo
*/
-/* RCSID("$Id: cipher.h,v 1.1 1999/10/27 03:42:44 damien Exp $"); */
+/* RCSID("$Id: cipher.h,v 1.2 1999/10/28 03:25:17 damien Exp $"); */
+
+#include "config.h"
#ifndef CIPHER_H
#define CIPHER_H
+#ifdef HAVE_OPENSSL
#include <openssl/des.h>
#include <openssl/blowfish.h>
+#endif
+#ifdef HAVE_SSL
+#include <ssl/des.h>
+#include <ssl/blowfish.h>
+#endif
/* Cipher types. New types can be added, but old types should not be removed
for compatibility. The maximum allowed value is 31. */