From 328a9834f49f59ec3993ee170c2edcb5ce5747c9 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Fri, 15 Aug 1997 01:52:31 +0000 Subject: [PATCH] x git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2994 ec53bebd-3082-4978-b11e-865c3cabbd6b --- ChangeLog | 13 +++++++++++++ lib/45/45_locl.h | 7 +++++++ lib/45/Makefile.am | 11 +++++++++++ 3 files changed, 31 insertions(+) create mode 100644 lib/45/45_locl.h create mode 100644 lib/45/Makefile.am diff --git a/ChangeLog b/ChangeLog index 197572dcf..8f92ca437 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,18 @@ Fri Aug 15 00:09:37 1997 Johan Danielsson + * lib/45/get_ad_tkt.c: Kerberos 4 get_ad_tkt using + krb524_convert_creds_kdc. + + * lib/krb5/convert_creds.c: Implementation of + krb524_convert_creds_kdc. + + * lib/asn1/k5.asn1: Make kdc-req-body.till OPTIONAL + + * kdc/524.c: A somewhat working 524-protocol module. + + * kdc/kerberos4.c: Add version 4 ticket encoding and encryption + functions. + * lib/krb5/context.c: Fix kdc_timeout. * lib/hdb/{ndbm,db}.c: Free name in close. diff --git a/lib/45/45_locl.h b/lib/45/45_locl.h new file mode 100644 index 000000000..b0b26e641 --- /dev/null +++ b/lib/45/45_locl.h @@ -0,0 +1,7 @@ +#ifndef __45_LOCL_H__ +#define __45_LOCL_H__ + +#include "krb5.h" +#include "krb.h" + +#endif /* __45_LOCL_H__ */ diff --git a/lib/45/Makefile.am b/lib/45/Makefile.am new file mode 100644 index 000000000..1fe6593b5 --- /dev/null +++ b/lib/45/Makefile.am @@ -0,0 +1,11 @@ +# $Id$ + +AUTOMAKE_OPTIONS = no-dependencies foreign + +lib_LIBRARIES = @EXTRA_LIB45@ + +EXTRA_LIBRARIES = lib45.a + +INCLUDES = $(INCLUDE_krb4) + +lib45_a_SOURCES = get_ad_tkt.c