diff options
author | assar <assar@FreeBSD.org> | 2001-06-21 02:21:57 +0000 |
---|---|---|
committer | assar <assar@FreeBSD.org> | 2001-06-21 02:21:57 +0000 |
commit | c05dadd8324d3befaaa8bf5972a638fab840e9b4 (patch) | |
tree | e6871833948536990e13646ceb0b0e09e8827e19 /crypto/heimdal/lib/hdb | |
parent | 7281f9682138be213c08fe4674685b925aef5ead (diff) | |
download | FreeBSD-src-c05dadd8324d3befaaa8bf5972a638fab840e9b4.zip FreeBSD-src-c05dadd8324d3befaaa8bf5972a638fab840e9b4.tar.gz |
fix merges from 0.3f
Diffstat (limited to 'crypto/heimdal/lib/hdb')
-rw-r--r-- | crypto/heimdal/lib/hdb/hdb_locl.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/crypto/heimdal/lib/hdb/hdb_locl.h b/crypto/heimdal/lib/hdb/hdb_locl.h index b5291e0..e5a6362 100644 --- a/crypto/heimdal/lib/hdb/hdb_locl.h +++ b/crypto/heimdal/lib/hdb/hdb_locl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997-2000 Kungliga Tekniska Högskolan + * Copyright (c) 1997-2001 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -31,7 +31,7 @@ * SUCH DAMAGE. */ -/* $Id: hdb_locl.h,v 1.13 2000/02/06 05:17:05 assar Exp $ */ +/* $Id: hdb_locl.h,v 1.15 2001/02/15 04:20:54 assar Exp $ */ /* $FreeBSD$ */ #ifndef __HDB_LOCL_H__ @@ -57,7 +57,11 @@ #endif #include <roken.h> +#ifdef HAVE_OPENSSL_DES_H #include <openssl/des.h> +#else +#include <des.h> +#endif #include <krb5.h> #include <hdb.h> #include <hdb-private.h> @@ -74,14 +78,4 @@ #include <gdbm/ndbm.h> #endif -int hdb_principal2key(krb5_context, krb5_principal, krb5_data*); -int hdb_key2principal(krb5_context, krb5_data*, krb5_principal); - -krb5_error_code hdb_lock(int, int); -krb5_error_code hdb_unlock(int); - -krb5_error_code _hdb_fetch(krb5_context, HDB*, unsigned, hdb_entry*); -krb5_error_code _hdb_store(krb5_context, HDB*, unsigned, hdb_entry*); -krb5_error_code _hdb_remove(krb5_context, HDB*, hdb_entry*); - #endif /* __HDB_LOCL_H__ */ |