git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1457 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-03-17 10:44:10 +00:00
parent 07b7f56f54
commit c0a19b7df7
2 changed files with 21 additions and 0 deletions

View File

@@ -1,3 +1,18 @@
Mon Mar 17 11:34:05 1997 Johan Danielsson <joda@blubb.pdc.kth.se>
* kdc/kdc.c: Use new copying functions, and free some data.
* lib/asn1/Makefile.am: Try to not always rebuild generated files.
* lib/asn1/der_put.c: Add fix_dce().
* lib/asn1/der_{get,length,put}.c: Fix include files.
* lib/asn1/der_free.c: Remove unused functions.
* lib/asn1/gen.c: Split into gen_encode, gen_decode, gen_free,
gen_length, and gen_copy.
Sun Mar 16 18:13:52 1997 Assar Westerlund <assar@sics.se>
* lib/krb5/sendauth.c: implemented functionality

View File

@@ -6,11 +6,17 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <ctype.h>
#include "der.h"
#include "gen.h"
#include "hash.h"
#include "symbol.h"
void generate_type_encode (Symbol *s);
void generate_type_decode (Symbol *s);