Use libcrypto instead of libdes.

This commit is contained in:
Mark Murray 2000-02-24 20:21:16 +00:00
parent bfb672b22a
commit c7aee9a208
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57444
15 changed files with 28 additions and 15 deletions

View File

@ -32,6 +32,7 @@
*/
/* $Id: adm_locl.h,v 1.17 1999/12/02 16:58:27 joda Exp $ */
/* $FreeBSD$ */
#ifndef __adm_locl_h
#define __adm_locl_h
@ -77,7 +78,7 @@
#include <roken.h>
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#include <krb_db.h>
#include <kdc.h>

View File

@ -30,6 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD$ */
#include "config.h"
@ -42,7 +43,7 @@ RCSID("$Id: kstring2key.c,v 1.16 1999/12/02 16:58:28 joda Exp $");
#include <roken.h>
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#define VERIFY 0

View File

@ -270,7 +270,7 @@ struct tm *localtime(const time_t *);
struct hostent *gethostbyname(const char *);
#endif
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#include <kafs.h>

View File

@ -32,6 +32,7 @@
*/
/* $Id: ftp_locl.h,v 1.34 1999/12/02 16:58:29 joda Exp $ */
/* $FreeBSD$ */
#ifndef __FTP_LOCL_H__
#define __FTP_LOCL_H__
@ -129,7 +130,7 @@ struct hostent *gethostbyname(const char *);
#include "roken.h"
#include "security.h"
#include <des.h> /* for des_read_pw_string */
#include <openssl/des.h> /* for des_read_pw_string */
#if defined(__sun__) && !defined(__svr4)
int fclose(FILE*);

View File

@ -30,6 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD$ */
#include <config.h>
@ -50,7 +51,7 @@ RCSID("$Id: enc_des.c,v 1.16 1998/07/09 23:16:23 assar Exp $");
#include "encrypt.h"
#include "misc-proto.h"
#include <des.h>
#include <openssl/des.h>
extern int encrypt_debug_mode;

View File

@ -30,6 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD$ */
/*
* Copyright (C) 1990 by the Massachusetts Institute of Technology
@ -65,7 +66,7 @@ RCSID("$Id: kerberos.c,v 1.45 1999/03/13 21:18:55 assar Exp $");
#include <arpa/telnet.h>
#endif
#include <stdio.h>
#include <des.h> /* BSD wont include this in krb.h, so we do it here */
#include <openssl/des.h> /* BSD wont include this in krb.h, so we do it here */
#include <krb.h>
#include <pwd.h>
#include <stdlib.h>

View File

@ -30,6 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD$ */
#include <config.h>
@ -74,7 +75,7 @@ RCSID("$Id: krb4encpwd.c,v 1.17 1998/07/09 23:16:29 assar Exp $");
#include <pwd.h>
#include <stdio.h>
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#include <stdlib.h>
#include <string.h>

View File

@ -32,6 +32,7 @@
*
* @(#)telnetd.h 8.1 (Berkeley) 6/4/93
*/
/* $FreeBSD$ */
#include <config.h>
@ -166,7 +167,7 @@ struct hostent *gethostbyname(const char *);
#endif
#ifdef KRB4
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#endif

View File

@ -32,6 +32,7 @@
*/
/* $Id: kadm_locl.h,v 1.31 1999/12/02 16:58:36 joda Exp $ */
/* $FreeBSD$ */
#include "config.h"
#include "protos.h"
@ -111,7 +112,7 @@ struct hostent *gethostbyname(const char *);
#include <com_err.h>
#include <sl.h>
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#include <krb_err.h>
#include <krb_db.h>

View File

@ -32,6 +32,7 @@
*/
/* $Id: kadm_locl.h,v 1.12 1999/12/02 16:58:39 joda Exp $ */
/* $FreeBSD$ */
#include "config.h"
#include "protos.h"
@ -69,7 +70,7 @@ struct hostent *gethostbyname(const char *);
#include <roken.h>
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#include <krb_err.h>
#include <krb_db.h>

View File

@ -48,7 +48,7 @@ __BEGIN_DECLS
#if !defined(NOPROTO) && !defined(__STDC__)
#define NOPROTO
#endif
#include <des.h>
#include <openssl/des.h>
/* CNS compatibility ahead! */
#ifndef KRB_INT32

View File

@ -1,4 +1,5 @@
.\" $Id: kerberos.3,v 1.2 1996/06/12 21:29:18 bg Exp $
.\" $FreeBSD$
.\" Copyright 1989 by the Massachusetts Institute of Technology.
.\"
.\" For copying and distribution information,
@ -13,7 +14,7 @@ krb_rd_err, krb_ck_repl \- Kerberos authentication library
.nf
.nj
.ft B
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
.PP
.ft B

View File

@ -1,4 +1,5 @@
.\" $Id: krb_realmofhost.3,v 1.2 1996/06/12 21:29:23 bg Exp $
.\" $FreeBSD$
.\" Copyright 1989 by the Massachusetts Institute of Technology.
.\"
.\" For copying and distribution information,
@ -13,7 +14,7 @@ krb_get_lrealm \- additional Kerberos utility routines
.nj
.ft B
#include <krb.h>
#include <des.h>
#include <openssl/des.h>
#include <netinet/in.h>
.PP
.ft B

View File

@ -1,4 +1,5 @@
.\" $Id: krb_sendauth.3,v 1.2 1996/06/12 21:29:24 bg Exp $
.\" $FreeBSD$
.\" Copyright 1988 by the Massachusetts Institute of Technology.
.\"
.\" For copying and distribution information,
@ -13,7 +14,7 @@ Kerberos routines for sending authentication via network stream sockets
.nj
.ft B
#include <krb.h>
#include <des.h>
#include <openssl/des.h>
#include <netinet/in.h>
.PP
.fi

View File

@ -5,6 +5,7 @@
* For copying and distribution information, please see the file
* <mit-copyright.h>.
*/
/* $FreeBSD$ */
#include "config.h"
#include "protos.h"
@ -73,7 +74,7 @@ RCSID("$Id: kerberos.c,v 1.87 1999/11/13 06:35:39 assar Exp $");
#include <roken.h>
#include <base64.h>
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#include <krb_db.h>
#include <prot.h>