summaryrefslogtreecommitdiff
path: root/cipher.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-28 13:25:17 +1000
committerDamien Miller <djm@mindrot.org>1999-10-28 13:25:17 +1000
commit7f6ea0264d01aa40b20df8dc75141631479da054 (patch)
treea30aa324db2b41c64e1216ce73b7b7468e5ff706 /cipher.h
parent3d112efc672b877c74893229d3fd30f99489b9ff (diff)
- 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 4ecb8f8da..9c2a0b52c 100644
--- a/cipher.h
+++ b/cipher.h
@@ -11,13 +11,21 @@ Created: Wed Apr 19 16:50:42 1995 ylo
11 11
12*/ 12*/
13 13
14/* RCSID("$Id: cipher.h,v 1.1 1999/10/27 03:42:44 damien Exp $"); */ 14/* RCSID("$Id: cipher.h,v 1.2 1999/10/28 03:25:17 damien Exp $"); */
15
16#include "config.h"
15 17
16#ifndef CIPHER_H 18#ifndef CIPHER_H
17#define CIPHER_H 19#define CIPHER_H
18 20
21#ifdef HAVE_OPENSSL
19#include <openssl/des.h> 22#include <openssl/des.h>
20#include <openssl/blowfish.h> 23#include <openssl/blowfish.h>
24#endif
25#ifdef HAVE_SSL
26#include <ssl/des.h>
27#include <ssl/blowfish.h>
28#endif
21 29
22/* Cipher types. New types can be added, but old types should not be removed 30/* Cipher types. New types can be added, but old types should not be removed
23 for compatibility. The maximum allowed value is 31. */ 31 for compatibility. The maximum allowed value is 31. */