summaryrefslogtreecommitdiff
path: root/cipher.c
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.c
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.c')
-rw-r--r--cipher.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/cipher.c b/cipher.c
index b47e7ecd8..f6f9b001f 100644
--- a/cipher.c
+++ b/cipher.c
@@ -11,13 +11,19 @@ Created: Wed Apr 19 17:41:39 1995 ylo
11 11
12*/ 12*/
13 13
14#include "config.h"
14#include "includes.h" 15#include "includes.h"
15RCSID("$Id: cipher.c,v 1.1 1999/10/27 03:42:44 damien Exp $"); 16RCSID("$Id: cipher.c,v 1.2 1999/10/28 03:25:17 damien Exp $");
16 17
17#include "ssh.h" 18#include "ssh.h"
18#include "cipher.h" 19#include "cipher.h"
19 20
21#ifdef HAVE_OPENSSL
20#include <openssl/md5.h> 22#include <openssl/md5.h>
23#endif
24#ifdef HAVE_SSL
25#include <ssl/md5.h>
26#endif
21 27
22/* 28/*
23 * What kind of tripple DES are these 2 routines? 29 * What kind of tripple DES are these 2 routines?