2001-11-07 Sam Hartman <hartmans@mit.edu>
[krb5.git] / src / lib / krb5 / krb / ChangeLog
1 2001-11-07  Sam Hartman  <hartmans@mit.edu>
2
3         * init_ctx.c (DEFAULT_ETYPE_LIST): Add arcfour-hmac-md5; it really
4         is probably at least as good as DES 
5
6 2001-10-10  Danilo Almeida  <dalmeida@mit.edu>
7
8         * gic_pwd.c (krb5_get_as_key_password),
9         gic_keytab.c (krb5_get_as_key_keytab): Use ANSI-style
10         declaration in definition.
11
12 2001-10-09  Ken Raeburn  <raeburn@mit.edu>
13
14         * init_ctx.c (init_common): After fetching kdc_default_options
15         value from krb5.conf, actually use that value.  Pointed out by
16         Emily Ratliff, <ratliff@austin.ibm.com>.
17
18         * get_in_tkt.c, in_tkt_ktb.c, in_tkt_pwd.c, in_tkt_sky.c,
19         int-proto.h, mk_req_ext.c, pr_to_salt.c, rd_req_dec.c, ser_actx.c,
20         ser_adata.c, ser_addr.c, ser_auth.c, ser_cksum.c, ser_ctx.c,
21         ser_eblk.c, ser_key.c, ser_princ.c, t_kerb.c: Make prototypes
22         unconditional.
23
24 2001-10-05  Ken Raeburn  <raeburn@mit.edu>
25
26         * init_ctx.c, preauth.c: Drop _MSDOS support.
27
28 2001-10-03  Ken Raeburn  <raeburn@mit.edu>
29
30         * appdefault.c, auth_con.c, bld_pr_ext.c, bld_princ.c, chpw.c,
31         conv_princ.c, copy_addrs.c, copy_athctr.c, copy_auth.c,
32         copy_cksum.c, copy_creds.c, copy_data.c, copy_key.c, copy_princ.c,
33         copy_tick.c, cp_key_cnt.c, decrypt_tk.c, fwd_tgt.c, get_creds.c,
34         get_in_tkt.c, gic_keytab.c, gic_opt.c, gic_pwd.c, in_tkt_ktb.c,
35         in_tkt_pwd.c, in_tkt_sky.c, init_ctx.c, kfree.c, mk_cred.c,
36         mk_error.c, mk_priv.c, mk_rep.c, mk_req.c, mk_req_ext.c,
37         mk_safe.c, parse.c, princ_comp.c, rd_cred.c, rd_error.c,
38         rd_priv.c, rd_rep.c, rd_req.c, rd_safe.c, recvauth.c, sendauth.c,
39         ser_actx.c, ser_ctx.c, serialize.c, set_realm.c, srv_rcache.c,
40         str_conv.c, unparse.c, vfy_increds.c, vic_opt.c, x-deltat.y: Don't
41         use KRB5_DLLIMP.  Don't explicitly declare pointers FAR any more.
42
43 2001-09-07  Ken Raeburn  <raeburn@mit.edu>
44
45         * t_expand.c: New file.
46         * Makefile.in (SRCS): Add test-case source files; rebuilt
47         dependencies.
48         (t_expand.o): Build from t_expand.c now, no special build rule.
49
50 2001-09-07  Ken Raeburn  <raeburn@mit.edu>
51
52         * rd_req_dec.c (krb5_rd_req_decoded_opt): Pass server realm to
53         transited-list check, not local realm, in case they're different.
54
55 2001-08-21  Ken Raeburn  <raeburn@mit.edu>
56
57         * walk_rtree.c (krb5_walk_realm_tree): Initialize slen to silence
58         compiler warning.
59
60 2001-08-08    <epeisach@mit.edu>
61
62         * walk_rtree.c (krb5_walk_realm_tree): Do not try to free const char *.
63
64         * mk_safe.c (krb5_mk_safe_basic): Do not declare local_addr and
65         remote_addr const and then cast the attribute away.
66
67         * mk_req_ext.c (krb5_generate_authenticator): Static function -
68         remove const attribute from cksum pointer.
69
70         * gc_via_tkt.c (krb5_get_cred_via_tkt): Cast unsigned integer
71         krb5_error error_value to signed before adding
72         ERROR_TABLE_BASE_krb5.
73
74 2001-07-31  Ken Raeburn  <raeburn@mit.edu>
75
76         * chk_trans.c (krb5_check_transited_list): Pointer args now point
77         to const.
78
79 2001-07-31  Ezra Peisach  <epeisach@mit.edu>
80
81         * get_in_tkt.c: Cast to unsigned krb5_error error value to 
82         krb5_error_code before trying to add to ERROR_TABLE_BASE_krb5. 
83
84 2001-07-30  Ezra Peisach  <epeisach@mit.edu>
85
86         * sendauth.c (krb5_sendauth): Instead of casting second argument
87         to getpeername() and getsockname() to "struct sockaddr *", cast to
88         system specific type as determined by autoconf. 
89
90 2001-07-24  Ezra Peisach  <epeisach@mit.edu>
91
92         * in_tkt_sky.c (krb5_get_in_tkt_with_skey): Change cast from
93         krb5_pointer to krb5_const_pointer to ensure const integrity of
94         parameter.
95
96         * in_tkt_ktb.c (keytab_keyproc): Add const argument to cast of
97         keyseed to struct keytab_keyproc_arg to maintain const status.
98
99         * conv_princ.c (krb5_524_conv_principal): Cast argument to memcpy
100         to size_t.
101
102 2001-07-06  Ezra Peisach  <epeisach@mit.edu>
103
104         * conv_princ.c (krb5_425_conv_principal): Cast argument to tolower
105         to int.
106
107         * get_in_tkt.c: Include os-proto.h for _krb5_conf_boolean prototype.
108
109         * Makefile.in (LOCALINCLUDES): Add -I$(srcdir)/../os so os-proto.h
110         can be included.
111
112 2001-06-29  Tom Yu  <tlyu@mit.edu>
113
114         * init_ctx.c (get_profile_etype_list): Fix etype-counting loop so
115         that trailing separator characters (as in the DEFAULT_ETYPE_LIST)
116         don't cause another iteration, which was causing the following
117         loop to fall off the end of the string due to count being one too
118         great.
119
120 2001-06-28  Ezra Peisach  <epeisach@mit.edu>
121
122         * chk_trans.c (foreach_realm): Cleanup loal variable set but never
123         used.
124
125 2001-06-21  Ezra Peisach  <epeisach@mit.edu>
126
127         * chk_trans.c: Cast length arguments of %.*s in formats to int.
128
129 2001-06-20  Ezra Peisach  <epeisach@mit.edu>
130
131         * Makefile.in (check-unix): Add $(RUN_SETUP) before invocation of
132         transit-tests for shared library environment variables.
133
134 2001-06-19  Ken Raeburn  <raeburn@mit.edu>
135
136         * chk_trans.c: Reimplemented from scratch.
137         * transit-tests: New file.
138         * Makefile.in (t_expand, t_expand.o): New targets.  Build test
139         program from chk_trans.c.
140         (T_EXPAND_OBJS): New variable.
141         (TEST_PROGS): Add t_expand.
142         (check-unix): Run transit-tests.
143         * t_krb5.conf: Added capaths section.
144
145 2001-06-16  Ken Raeburn  <raeburn@mit.edu>
146
147         * fwd_tgt.c (krb5_fwd_tgt_creds): Copy enctype for new creds from
148         tgt.
149
150 2001-06-12  Ezra Peisach  <epeisach@mit.edu>
151
152         * Makefile.in (t_walk_rtree, t_kerb): Do not link against kdb libraries
153         for these test executables. 
154
155         * srv_rcache.c (krb5_get_server_rcache): Cast argument to
156         isgraph() to int.
157
158         * init_ctx.c: Cast arguments to isspace() to int. If unix is defined, 
159         include ../krb5_libinit.h. There has to be a better was for windows.
160
161         * conv_princ.c (krb5_425_conv_principal): Cast argument to isupper().
162         to int.
163
164 2001-06-11  Ezra Peisach  <epeisach@mit.edu>
165
166         * str_conv.c: If strptime() is present on system without a
167         prototype, provide one.
168
169 2001-06-07  Ezra Peisach  <epeisach@mit.edu>
170
171         * vfy_increds.c (krb5_verify_init_creds): Get rid of a variable
172         that was set in a conditional and never used afterwards.
173
174 2001-06-01  Ken Raeburn  <raeburn@mit.edu>
175
176         * init_ctx.c (get_profile_etype_list): Zero out multiple separator
177         characters between tokens, so the second can be recognized
178         properly.
179
180 2001-04-04  Tom Yu  <tlyu@mit.edu>
181
182         * mk_safe.c (krb5_mk_safe): Only use safe_cksumtype from the
183         auth_context (derived from the config file or hardcoded default)
184         if it's suitable for the enctype of the key we're going to
185         use. [pullup from krb5-1-2-2-branch]
186
187 2001-03-28  Ken Raeburn  <raeburn@mit.edu>
188
189         * init_ctx.c (DEFAULT_ETYPE_LIST): New macro.  Old etype list,
190         plus des-md4, with des-crc before des-mdX for now.
191         (get_profile_etype_list): Use DEFAULT_ETYPE_LIST.
192
193 2001-03-10  Ezra Peisach  <epeisach@mit.edu>
194
195         * init_ctx.c: Provide a full prototype for init_common().
196
197         * recvauth.c (recvauth_common): Declare recvauth_common as static. 
198
199         * parse.c, sendauth.c: Changes to prevent shadowing of local
200         variables.
201
202         * get_in_tkt.c, tgtname.c: Include int-proto.h for prototypes.
203
204 2001-03-03  Ken Raeburn  <raeburn@mit.edu>
205
206         * preauth2.c (pa_sam): Return an error if no prompter was
207         provided.
208
209 2001-02-15  Ezra Peisach  <epeisach@mit.edu>
210
211         * t_deltat.c (main): Test of overflow and underflow of krb5_int32. 
212
213         * x-deltat.y: Test for over/underflow of krb5_int32 for a
214         krb5_deltat. Return EINVAL. [krb5-libs/922]
215
216         * deltat.c: Regenerated from x-deltat.y
217
218         * str_conv.c (krb5_string_to_timestamp): Do not accept a time
219         format that only partially matches the input string. [krb5-lib/922]
220
221 2001-01-30  Tom Yu  <tlyu@mit.edu>
222
223         * preauth.c (krb5_obtain_padata): Don't dereference a NULL pointer
224         if we receive an empty ETYPE_INFO preauth. [krb5-libs/903 from
225         craziboy77@hotmail.com]
226
227         * preauth2.c (krb5_do_preauth): Don't dereference a NULL pointer
228         if we receive an empty ETYPE_INFO preauth. [krb5-libs/903 from
229         craziboy77@hotmail.com]
230
231 2001-01-30  Ezra Peisach  <epeisach@mit.edu>
232
233         * rd_req_dec.c (krb5_rd_req_decrypt_tkt_part): Free
234         krb5_keytab_entry if call to krb5_decrypt_tkt_part()
235         fails. [krb5-libs/855 reported by guy@packeteer.com]
236
237 2001-01-19  Ken Raeburn  <raeburn@mit.edu>
238
239         * preauth.c: Don't use PROTOTYPE macro, just always use the
240         prototypes.
241
242 2001-01-19  Tom Yu  <tlyu@mit.edu>
243
244         * preauth.c: Remove uses of KRB5_NPROTOTYPE() macro.
245
246 2000-10-26  Ezra Peisach  <epeisach@mit.edu>
247
248         * t_ser.c: Cast getpid() calls to int as arguments to sprintf.
249
250         * ser_actx.c: Move prototypes (listed below) to int-proto.h
251
252         * int-proto.h: Add prototypes for krb5_ser_authdata_init,
253         krb5_ser_address_init, krb5_ser_authenticator_init,
254         krb5_ser_checksum_init, krb5_ser_keyblock_init,
255         krb5_ser_principal_init.
256         
257         * ser_adata.c, ser_addr.c, ser_auth.c, ser_cksum.c, ser_key.c,
258         ser_princ.c: Include int-proto.h for prototypes.
259
260 2000-10-17  Ezra Peisach  <epeisach@mit.edu>
261
262         * bld_pr_ext.c, bld_princ.c (krb5_build_principal_ext,
263         krb5_build_principal_va, krb5_build_principal): Take an unsigned
264         int realm length.
265
266         * get_in_tkt.c (krb5_get_init_creds): Use SALT_TYPE_AFS_LENGTH
267         instead of -1.
268
269         * gic_pwd.c (krb5_get_as_key_password): Use SALT_TYPE_AFS_LENGTH
270         instead of -1.
271
272         * in_tkt_pwd.c (pwd_keyproc): Argument to krb5_read_password is
273         unsigned int.
274
275         * pr_to_salt.c (krb5_principal2salt_internal): Declare as
276         static. Unsigned int fix.
277
278         * preauth.c (krb5_obtain_padata): Use SALT_TYPE_AFS_LENGTH instead
279         of -1.
280
281         * preauth2.c (pa_salt): Use SALT_TYPE_AFS_LENGTH instead of -1. 
282
283         * conv_princ.c, copy_auth.c, copy_princ.c, gc_frm_kdc.c, parse.c,
284         send_tgs.c, srv_rcache.c: Unsigned/signed int cleanup.
285
286         * unparse.c (krb5_unparse_name_ext): size parameter changed to
287         unsigned int *.
288
289 2000-10-04  Ezra Peisach  <epeisach@mit.edu>
290
291         * rd_req_dec.c (krb5_rd_req_decrypt_tkt_part): Fix memory leak if
292         krb5_decrypt_tkt_part() fails. [krb5-libs/855]
293
294 2000-10-03  Ezra Peisach  <epeisach@mit.edu>
295
296         * srv_rcache.c (krb5_get_server_rcache): Signed vs unsigned int
297         warning fix.
298
299         * pr_to_salt.c (krb5_principal2salt_internal): Add prototype for
300         internal function, and declare static.
301
302         * copy_addrs.c (krb5_copy_addresses): Cleanup unsigned vs signed
303         warnings as arguments to malloc().
304
305 Tue Sep 26 13:00:54 2000  Ezra Peisach  <epeisach@mit.edu>
306
307         * conv_princ.c (krb5_425_conv_principal): Call profile_free_list
308         on v4realms during the iteration loop. Do not call
309         profile_release_string with a NULL pointer.
310
311 2000-09-25  Ezra Peisach  <epeisach@mit.edu>
312
313         * t_kerb.c: Add prototypes for test functions.
314
315 2000-08-29  Ken Raeburn  <raeburn@mit.edu>
316
317         * get_creds.c (krb5_get_credentials_core): If the supplied enctype
318         is not supported, return an error; can't satisfy both
319         TC_SUPPORTED_KTYPES and TC_MATCH_KTYPE that way.  Delete unused
320         arguments CCACHE and OUT_CREDS; fix callers.
321
322 2000-07-18  Ezra Peisach  <epeisach@mit.edu>
323
324         * vfy_increds.c: include int-proto.h for krb5_libdefault_boolean
325         prototype.
326
327         * t_ser.c (ser_eblock_test): ifdef out old eblock serialization
328         test which is no longer called. (see 1999-09-01 ChangeLog)
329
330         * t_kerb.c: Cast argument to fprintf to long to agree with format
331         string.
332
333         * t_deltat.c: If MIN is defined, undef before redefined as 60.
334
335         * str_conv.c: Provide strptime prototype if the system header
336         files fail to provide a prototype.
337
338         * int-proto.h:  Add prototype for krb5_libdefault_boolean()
339
340 2000-06-30  Tom Yu  <tlyu@mit.edu>
341
342         * conv_princ.c (krb5_425_conv_principal): NULL, not nil.
343
344 2000-06-30  Miro Jurisic  <meeroh@mit.edu>
345
346         * conv_princ.c (krb5_425_conv_principal): Fixed a memory leak
347
348 2000-06-29  Ezra Peisach  <epeisach@engrailed.mit.edu>
349
350         * t_walk_rtree.c (main): Declare as returning int.
351
352         * get_in_tkt.c (_krb5_conf_boolean): Declare as taking a const char *
353
354         * str_conv.c (krb5_timestamp_to_string): Work around gcc's warning
355         that %c format in strftime might return only two digits for the
356         year.
357
358         * mk_safe.c, rd_rep.c, send_tgs.c: Remove unused goto label.
359
360         * kdc_rep_dc.c (krb5_kdc_rep_decrypt_proc): Remove code with no
361         effect.
362
363         * init_ctx.c: Make krb5_brand[] look used.
364
365         * chpw.c, decode_kdc.c, decrypt_tk.c, enc_helper.c, get_creds.c,
366         get_in_tkt.c, gic_keytab.c, gic_pwd.c, preauth2.c, vfy_increds.c:
367         Add parentheses around assignment used as truth value
368
369 2000-06-28  Ezra Peisach  <epeisach@mit.edu>
370
371         * conv_princ.c, get_creds.c, get_in_tkt.c, mk_rep.c, parse.c,
372         send_tgs.c: Remove unused variable.
373
374 2000-06-23  Miro Jurisic  <meeroh@mit.edu>
375
376         * conv_princ.c (krb5_425_conv_principal): Fixed v4->v5 realm
377         name conversion
378
379         * conv_princ.c (krb5_425_conv_principal): Honor v4/v5 realm name
380         differences when convertion from v4 principals to v5.
381
382 2000-06-23  Tom Yu  <tlyu@mit.edu>
383
384         * get_creds.c (krb5_get_credentials): Translate KRB5_CC_NOTFOUND
385         returned from krb5_get_cred_from_kdc() if a prior call to
386         krb5_cc_retrieve_cred() returned KRB5_CC_NOT_KTYPE.
387
388         * rd_priv.c (krb5_rd_priv_basic): Delete code that was incorrectly
389         doing explicit ivec chaining; c_decrypt() does it now.
390
391         * mk_priv.c (krb5_mk_priv_basic): Delete code that was incorrectly
392         doing explicit ivec chaining; c_encrypt() does it now.
393
394         * conv_princ.c (krb5_524_conv_principal): Make a copy of the krb5
395         realm that is nul-terminated to avoid falling off the end of the
396         krb5 realm, which is not necessarily nul-terminated.
397
398 2000-06-23  Danilo Almeida  <dalmeida@mit.edu>
399
400         * init_ctx.c (krb5_get_tgs_ktypes, krb5_free_ktypes): Fix linkage to
401         be KRB5_CALLCONV.
402
403 2000-06-23  Ken Raeburn  <raeburn@mit.edu>
404
405         * get_in_tkt.c (krb5_get_in_tkt): If enctypes are specified, send
406         the server the intersection of that list and the supported types,
407         in the order requested.
408
409         * recvauth.c (krb5_recvauth_version): New routine, takes a
410         krb5_data in which to store the client's application version
411         string.
412         (recvauth_common): Renamed from krb5_recvauth, added above
413         functionality depending on extra argument values.
414         (krb5_recvauth): New stub, calls above routine with extra dummy
415         values.
416
417         * kfree.c: Remove unneeded "return" statements at the end of many
418         functions.
419         (krb5_free_*_content, krb5_free_*_contents,
420         krb5_free_cred_enc_part, krb5_free_pwd_sequences): Set freed
421         pointer members to null when containing structure isn't being
422         freed.
423
424         * t_kerb.c (test_524_conv_principal): New test code, to exercise
425         bbense's code addition.
426         (main, usage): Updated.
427         * t_krb5.conf: Added stanford.edu->IR.STANFORD.EDU mapping, and a
428         test case for improperly long v4 realm names.
429         * Makefile.in (check-unix): Run 524 conversion test for some test
430         Athena and Stanford names.
431         * t_ref_kerb.out: Updated.
432
433         * init_ctx.c (init_common): Feed current-microsecond time and
434         process-id into PRNG, instead of just current-second time.
435         * mk_req_ext.c (krb5_mk_req_extended): Feed current time into
436         PRNG if a subkey will be generated.
437         * sendauth.c (krb5_sendauth): Feed local and remote addresses of
438         socket, if they can be determined, into the PRNG if a subkey will
439         be used.
440
441         * init_ctx.c (krb5_free_ktypes): New routine, to free values
442         returned by krb5_get_tgs_ktypes, krb5_get_permitted_enctypes, and
443         krb5_get_default_in_tkt_ktypes.
444         (krb5_set_default_tgs_ktypes, krb5_is_permitted_enctype): Use it.
445         (get_profile_etype_list): Use passed-in enctype list if the
446         passed-in count is non-zero, instead of checking the
447         in_tkt_ktype_count value in the context.
448
449 2000-06-23  Ken Raeburn  <raeburn@mit.edu>
450             Nalin Dahyabhai  <nalin@redhat.com>
451
452         * conv_princ.c (krb5_524_conv_principal): Return an error if name
453         is too long.  Use memcpy for character data since we already know
454         the length.
455
456 2000-06-23  Nalin Dahyabhai  <nalin@redhat.com>
457
458         * kfree.c (krb5_free_keyblock_contents): Set contents pointer to
459         null after freeing.
460
461         * chk_trans.c (krb5_check_transited_list): Don't overflow buffers
462         "prev" and "next".
463         * conv_princ.c (krb5_425_conv_principal): Don't overflow buffer
464         "buf".
465
466 2000-06-23  Ken Raeburn  <raeburn@mit.edu>
467             Booker C. Bense  <bbense@networking.stanford.edu>
468
469         * conv_princ.c (krb5_524_conv_principal): Look up v4_realm in
470         config file, in case site's krb4 realm name isn't the same as the
471         krb5 realm name.
472
473 2000-05-31  Wilfredo Sanchez  <tritan@mit.edu>
474
475         * fwd_tgt.c: Check for existance of <memory.h>.
476         [from Nathan Neulinger <nneul@umr.edu>]
477
478 2000-5-19       Alexandra Ellwood <lxs@mit.edu>
479
480         * sendauth.c, fwd_tgt.c: Changed to use krb5int_cc_default.  This function 
481         supports the Kerberos Login Library and pops up a dialog if the cache does 
482         not contain valid tickets.  This is used to automatically get a tgt before
483         obtaining service tickets.  Note that this should be an internal function
484         because callers don't expect krb5_cc_default to pop up a dialog!
485         (We found this out the hard way :-)
486
487 2000-05-15      Jeffrey Altman          <jaltman@columbia.edu>
488
489         * Added new source file appdefault.c
490           Implements new public functions
491
492                krb5_appdefault_string
493                krb5_appdefault_boolean
494
495 2000-04-28      Alexandra Ellwood       <lxs@mit.edu>
496
497         * gic_pwd.c (krb5_init_creds_password) added code to return to
498         login library if the password is expired (login library handles
499         this error appropriately).
500
501 2000-04-08  Tom Yu  <tlyu@mit.edu>
502
503         * vfy_increds.c (krb5_verify_init_creds): appdefault_boolean ->
504         libdefault_boolean; it somehow got missed earlier.
505
506 2000-04-07  Jeffrey Altman  <jaltman@columbia.edu>
507
508         * gic_pwd.c (krb5_get_init_creds_keytab), gic_pwd.c
509         (krb5_get_init_creds_password) when determining whether or not to
510         retry with a "master kdc" do not retry if the return value from
511         the first attempt was KRB5_REALM_CANT_RESOLV.  Also, do not
512         overwrite the return code if the return value from the access to
513         the "master kdc" was KRB5_REALM_CANT_RESOLV.
514
515 2000-03-15  Danilo Almeida  <dalmeida@mit.edu>
516
517         * init_ctx.c (init_common), gic_pwd.c (krb5_get_as_key_password,
518         krb5_get_init_creds_password), preauth2.c (pa_sam): Add support
519         for krb5_get_prompt_types().
520
521 2000-03-13  Ken Raeburn  <raeburn@mit.edu>
522
523         * preauth2.c (pa_function): Called function now takes new
524         krb5_enctype pointer argument.
525         (pa_salt, pa_sam): Accept new arg, ignore it.
526         (pa_enc_timestamp): Accept new arg.  If value pointed to is
527         nonzero, pass it to get-AS-key fn instead of first requested
528         enctype.  Added some debugging fprintf calls, conditionally
529         compiled.
530         (krb5_do_preauth): Accept new arg, and pass it through to the
531         specific preauth functions.  Added some debugging fprintf calls,
532         conditionally compiled.
533
534         * get_in_tkt.c (krb5_get_init_creds): Pass etype pointer to
535         krb5_do_preauth.
536
537 2000-03-12  Ezra Peisach  <epeisach@mit.edu>
538
539         * addr_comp.c, addr_order.c, addr_srch.c, bld_pr_ext.c,
540         bld_princ.c, encrypt_tk.c, gen_seqnum.c, gen_subkey.c: Change
541         prototypes to use krb5_const instead of const to match the entries
542         in krb5.hin
543
544 2000-03-10  Miro Jurisic  <meeroh@mit.edu>
545
546         * get_in_tkt.c (krb5_get_init_creds): Always initialize local_as_reply
547         to avoid returning garbage on error returns.
548
549 2000-02-25  Ken Raeburn  <raeburn@mit.edu>
550
551         * preauth2.c (krb5_do_preauth): Check paorder[h] not h for
552         PA_REAL.  Fix from Matt Crawford.
553
554 2000-02-16  Ken Raeburn  <raeburn@mit.edu>
555
556         * preauth2.c (pa_sam): In send-encrypted-sad mode, check for magic
557         salt length and generate a salt from the principal name if found;
558         use the password and salt to generate a key.  Provide timestamp if
559         nonce is zero, regardless of preauth mode.  (Patch from Chas
560         Williams.)
561
562 2000-02-07  Ken Raeburn  <raeburn@mit.edu>
563
564         * gic_pwd.c (krb5_get_as_key_password): If the as_key enctype is
565         already set to the correct type, do continue and ask for the
566         password anyways.  (Patch from Chas Williams, PR krb5-libs/730.)
567
568         * preauth2.c (pa_sam): If no sam_flags were set, return
569         KRB5_PREAUTH_BAD_TYPE, because we don't currently handle that
570         case.
571
572 2000-02-06  Ken Raeburn  <raeburn@mit.edu>
573
574         * preauth2.c (pa_sam): Remove unused variable use_sam_key.
575         (SAMDATA): Cast first result to int, which is what sprintf needs.
576         (pa_salt): Delete unused variable ret.
577
578         Patches from Frank Cusack:
579         * kfree.c (krb5_free_predicted_sam_response_contents): Fix typo.
580         Free new data fields if needed.
581         (krb5_free_enc_sam_response_enc_contents): Update for field name
582         change.
583         * preauth.c (obtain_sam_padata): Update for field name change.
584         * preauth2.c (pa_sam): Likewise.
585
586 2000-01-27  Ken Raeburn  <raeburn@mit.edu>
587
588         * init_ctx.c (get_profile_etype_list): Discard DESONLY changes
589         from 1999-09-01, and revert call sites.
590
591 1999-12-02  Ken Raeburn  <raeburn@mit.edu>
592
593         * init_ctx.c (get_profile_etype_list): Report an error if no
594         recognized enctypes are found in the config file.
595
596 1999-11-23  Ken Raeburn  <raeburn@mit.edu>
597
598         * init_ctx.c (init_common): Renamed from krb5_init_context, now
599         static.  New argument SECURE provides initialization of
600         profile_secure field.
601         (krb5_init_context): Call it.
602         (krb5_init_secure_context): New function.
603
604         * in_tkt_ktb.c (keytab_keyproc): Now static.
605         * in_tkt_pwd.c (pwd_keyproc): Now static.
606         * in_tkt_sky.c (skey_keyproc): Now static.
607
608         * preauth2.c (krb5_do_preauth): Fix syntax in switch statement.
609         Cast padata contents pointer to avoid warning.
610         (pa_types): Now static.
611
612         * str_conv.c (krb5_deltat_to_string): Always write to a local
613         temporary buffer that's guaranteed to be large enough, then see if
614         the supplied output buffer is big enough.
615         (krb5_string_to_deltat): Deleted.
616         * x-deltat.y, deltat.c: New files.
617         * Makefile.in (deltat.c): Add rule for building from x-deltat.y,
618         but comment out dependencies for easier maintenance.
619         (BISON, BISONFLAGS): New variables.
620
621         * str_conv.c: Removed most static char arrays, substituting the
622         values in place.
623         (krb5_string_to_timestamp): Move atime_format_table inside here.
624         (krb5_timestamp_to_sfstring): Move sftime_format_table inside
625         here.
626
627         * str_conv.c: If strftime or strptime are not available, include
628         the renamed NetBSD versions, and define the function names as
629         macros to map them to the replacement names.
630         (__P, _CurrentTimeLocale, dummy_locale_info, TM_YEAR_BASE,
631         DAYSPERLYEAR, DAYSPERNYEAR, DAYSPERWEEK, isleap, tzname, tzset):
632         Define some dummies for strftime/strptime to use.
633         (strptime): Deleted old stub version.
634         (krb5_timestamp_to_string, krb5_timestamp_to_sfstring): Always
635         assume strftime is available.
636         (krb5_string_to_timestamp): Assume strptime is always available.
637         * strftime.c, strptime.c: New files, based on NetBSD versions.
638         Modified to rename the functions and not export any symbols.
639
640         * Makefile.in (T_DELTAT_OBJS): New variable.
641         (TEST_PROGS): Add t_deltat.
642         (t_deltat): Add rule.
643         (clean): Added t_deltat stuff.  Run rm only once.
644         * t_deltat.c: New file.
645
646 1999-11-02  Ken Raeburn  <raeburn@mit.edu>
647
648         * t_ref_kerb.out: Fix expected zephyr/zephyr output.
649
650 1999-10-26  Wilfredo Sanchez  <tritan@mit.edu>
651
652         * Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
653         LOCAL_INCLUDES such that one can override CFLAGS from the command
654         line without losing CPP search patchs and defines. Some associated
655         Makefile cleanup.
656
657 1999-10-12  Ken Raeburn  <raeburn@mit.edu>
658
659         * conv_princ.c (sconv_list): Don't do conversion for "zephyr"
660         principal.  (Noticed by Derrick Brashear.)  Delete about a dozen
661         duplicate entries.
662
663 1999-09-01  Ken Raeburn  <raeburn@mit.edu>
664
665         * init_ctx.c (get_profile_etype_list): Update name of the des3
666         entry in the default etype list.
667
668         * init_ctx.c (get_profile_etype_list): New argument DESONLY; if
669         set, ignore any ktype values other than NULL, DES_CBC_CRC, and
670         DES_CBC_MD5.
671         (krb5_get_default_in_tkt_ktypes, krb5_get_tgs_ktypes): Set it.
672         (krb5_get_permitted_enctypes): Don't set it.
673
674         * fwd_tgt.c (krb5_fwd_tgt_creds): Use KRB5_TC_SUPPORTED_KTYPES
675         when calling krb5_cc_retrieve_cred.
676         * gc_frm_kdc.c (krb5_get_cred_from_kdc_opt): Ditto.
677         * get_creds.c (krb5_get_credentials_core): Set that flag.
678         (krb5_get_credentials): Check for KRB5_CC_NOT_KTYPE error return.
679
680         * t_ser.c (main): Disable eblock serialization test, since the
681         code it tests was disabled nearly a year ago.
682
683         * str_conv.c (krb5_timestamp_to_sfstring): Don't pass extra
684         argument to sprintf.
685
686 1999-08-10      Alexandra Ellwood       <lxs@mit.edu>
687
688         * chpw.c (krb5_mk_chpw_req):
689                 Added call to free cipherpw.data.  cipherpw.data is allocated 
690                 by krb5_mk_priv and passed back.  Since cipherpw is never
691                 passed back, krb5_mk_chpw_req should free it.
692
693 1999-08-05  Danilo Almeida  <dalmeida@mit.edu>
694
695         * init_ctx.c (krb5_init_context): Document why krb5_win_ccdll_load
696         is called way early in code.  (It is because we need to have the
697         ccapi stuff loaded before trying to get the OS-specific context
698         initialization where we figure out default cache names and such.)
699
700 1999-08-05  Danilo Almeida  <dalmeida@mit.edu>
701
702         * init_ctx.c (get_profile_etype_list): Use profile_release_string
703         to free string allocated by profile_get_string.
704         (krb5_init_context): Use a real context for krb5_win_ccdll_load.
705
706         * get_in_tkt.c (krb5_appdefault_string):
707         * conv_princ.c (krb5_425_conv_principal): Use profile_free_list
708         to free values allocated by profile_get_values.
709
710 1999-08-04  Danilo Almeida  <dalmeida@mit.edu>
711
712         * get_in_tkt.c (_krb5_conf_boolean, krb5_appdefault_boolean): 
713         Rename krb5_conf_boolean to _krb5_conf_boolean to denote that
714         it is not public so that folks outside the libraries won't
715         be tempted to use it.
716
717 1999-08-03  Danilo Almeida  <dalmeida@mit.edu>
718
719         * get_creds.c (krb5_validate_or_renew_creds): Intialize out_creds
720         pointer to 0 and then check whether it is 0 before trying to 
721         dereference it, in case lower-level routine failed to assign
722         a value to it.
723
724 1999-07-22  Jeffrey Altman <jaltman@columbia.edu>
725
726         get_in_tkt.c:  rename conf_boolean to krb5_conf_boolean so that
727         it may be used in additional modules.
728
729 1999-06-28  Tom Yu  <tlyu@mit.edu>
730
731         * enc_helper.c (krb5_encrypt_helper): NULL out the pointer to the
732         ciphertext if there is an error; this prevents stuff farther up
733         from freeing freed memory.
734
735 1999-06-18  Ken Raeburn  <raeburn@mit.edu>
736
737         * init_ctx.c (krb5_free_context): Set field pointers to NULL after
738         freeing targets, in case higher-level code retains pointers into
739         the context structure.  (From Jeffrey Altman.)
740
741 Thu May 13 17:31:34 1999  Theodore Y. Ts'o  <tytso@mit.edu>
742
743         * init_ctx.c (krb5_init_context): Pass the context to
744                 kkrb5_win_ccdll_load so that it can register the FILE
745                 ccache type if using ccapi (so that the FILE ccache type
746                 will always work).
747
748 Mon May 10 15:26:00 1999  Danilo Almeida  <dalmeida@mit.edu>
749
750         * Makefile.in: Do win32 build in subdir.
751
752 1999-04-09  Theodore Ts'o  <tytso@rsts-11.mit.edu>
753
754         * kfree.c (krb5_free_sam_challenge, krb5_free_sam_challenge_contents,
755                 krb5_free_sam_response, krb5_free_sam_response_contents,
756                 krb5_free_predicted_sam_response, 
757                 krb5_free_predicted_sam_response_contents,
758                 krb5_free_enc_sam_response_enc, 
759                 krb5_free_enc_sam_response_enc_contents,
760                 krb5_free_pa_enc_ts): Added new functions.  Part of
761                 patches from [krb5-kdc/662]
762
763         * gic_pwd.c (krb5_get_init_creds_password): Add new argument to
764                 calls to the prompter function.  Part of patches from
765                 [krb5-kdc/662].
766
767         * preauth2.c (pa_enc_timestamp, pa_sam): Update calls to new
768                 prompter function.   [krb5-kdc/662].
769
770 1999-03-31  Theodore Ts'o  <tytso@rsts-11.mit.edu>
771
772         * init_ctx.c (krb5_init_context): Call krb5_win_ccdll_load() to
773                 load the krbcc32.dll under windows.
774
775 Mon Mar  8 22:39:01 1999  Tom Yu  <tlyu@mit.edu>
776
777         * sendauth.c (krb5_sendauth): Set credspout to NULL if it's
778         destined to be returned to avoid freeing it.  Also,
779         unconditionally free credspout if it's non-NULL so that if someone
780         doesn't pass in a ticket and doesn't give us a non-NULL out_creds,
781         we don't leak it. [krb5-libs/699]
782
783 1998-11-13  Theodore Ts'o  <tytso@rsts-11.mit.edu>
784
785         * Makefile.in: Set the myfulldir and mydir variables (which are
786                 relative to buildtop and thisconfigdir, respectively.)
787
788 Mon Nov  2 19:00:23 1998  Tom Yu  <tlyu@mit.edu>
789
790         * str_conv.c: Remove krb5_cksumtype_to_string after merge.
791
792 1998-10-27  Marc Horowitz  <marc@mit.edu>
793
794         * vfy_increds.c: rearrange the code a bit to make it more clear
795         that the logic is correct.
796
797         * str_conv.c: remove enctype and cksumtype string converstions.
798         They're in the crypto library now, since the information drops
799         right into the enctype table.
800
801         * ser_eblk.c: ifdef the whole file out, since it's not used
802         anywhere.  it should probably be deleted, but I'm not sure about
803         backward-compatibility issues yet.
804
805         * rd_req_dec.c: check the auth_context permit-all flag and
806         permitted_enctypes list, and reject the request if the policy
807         check fails.
808
809         * init_ctx.c: add code to initialize the prng.  It's not great,
810         but can be improved, and the prng is reseeded when new keys are
811         processed. Read permitted_enctypes from the krb5.conf file, and
812         provide accessor functions for it.  Make the various etype list
813         parsers share code as a side effect.
814
815         * get_creds.c: add krb5_get_{validat,renew}ed_creds functions,
816         which are part of the new init_creds api.  The prototypes were
817         already in, krb5.hin but there was no implementing code.
818
819         * auth_con.c, auth_con.h: add a list of permitted enctypes to the
820         auth_context for rd_req to check, and create accessor functions
821         for this list.
822
823         * Makefile.in, enc_helper.c: add enc_helper.c.  This provides a
824         wrapper around the conventional way the library encrypts and wraps
825         encoded asn.1 structures, so the code isn't repeated in a dozen
826         places.
827
828 Wed Aug 19 17:27:51 1998  Tom Yu  <tlyu@mit.edu>
829
830         * conv_princ.c: Add some additional entries to sconv_list that
831         were forgotten.
832
833 Wed Jul 15 11:46:05 1998  Ezra Peisach  <epeisach@mit.edu>
834
835         * gic_pwd.c (krb5_get_init_creds_password): Remove unused argument
836                 to sprintf().
837
838         * t_ref_kerb.out: Fix test case for zephyr principal to reflect
839                 addition to conv_princ.c
840
841 Tue Jul  7 17:06:13 1998  Theodore Y. Ts'o  <tytso@mit.edu>
842
843         * conv_princ.c: Add additional commonly seen Kerberos V4 services
844                 to the hard-coded list.
845
846 Tue Jul  7 16:59:03 1998  Tom Yu  <tlyu@mit.edu>
847
848         * chk_trans.c: Fix up previous fix; short-circuit out when
849         trans->length == 0.
850
851 Wed Jul  1 17:59:26 1998  Theodore Y. Ts'o  <tytso@mit.edu>
852
853         * chk_trans.c (krb5_check_transited_list): Fix use of an
854                 uninitialized variable; apparently the code was depending
855                 on the stack garbage being non-zero(!)
856
857 1998-05-26  Theodore Ts'o  <tytso@rsts-11.mit.edu>
858
859         * srv_rcache.c (krb5_get_server_rcache): 
860         * auth_con.c (krb5_auth_con_setrcache): Export this function in
861                 Windows DLL.
862
863 1998-05-12  Theodore Ts'o  <tytso@rsts-11.mit.edu>
864
865         * str_conv.c (krb5_timestamp_to_sfstring): Make sure the date
866                 string printed uses 4 digit years.
867
868 1998-05-08  Theodore Ts'o  <tytso@rsts-11.mit.edu>
869
870         * str_conv.c (krb5_string_to_timestamp, strptime): Fix routines to
871                 be able to properly parse Y2K dates.  
872
873         * t_kerb.c: Add ability to test krb5_string_to_timestamp
874
875 1998-05-06  Theodore Ts'o  <tytso@rsts-11.mit.edu>
876
877         * t_ser.c (main): POSIX states that getopt returns -1
878                 when it is done parsing options, not EOF.
879
880 1998-05-05  Theodore Ts'o  <tytso@rsts-11.mit.edu>
881
882         * get_in_tkt.c (krb5_get_init_creds): If
883                 libdefaults/{REALM}/noaddresses is true, then don't put
884                 any addresses in the ticket request.
885
886 Mon May  4 15:54:07 1998  Tom Yu  <tlyu@mit.edu>
887
888         * get_in_tkt.c: Add prototype for make_preauth_list.
889
890 Sat May  2 21:46:02 1998  Tom Yu  <tlyu@mit.edu>
891
892         * get_in_tkt.c (krb5_get_in_tkt): Add missing argument to call to
893         make_preauth_list to avoid stack smashing.  Pointed out by lxs.
894
895 Mon Mar 16 19:50:55 1998  Tom Yu  <tlyu@mit.edu>
896
897         * chk_trans.c (krb5_check_transited_list): Check lengths when
898         appending to next and prev.
899
900 Fri Feb 27 18:03:33 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
901
902         * Makefile.in: Changed thisconfigdir to point at the lib/krb5
903                 directory, since we've moved the configure.in tests in
904                 this directory to the toplevel lib/krb5 configure.in
905
906 Thu Feb 19 19:03:20 1998  Tom Yu  <tlyu@mit.edu>
907
908         * recvauth.c (krb5_recvauth): Add some bookkeeping flags so we
909         know how much stuff to free upon cleanup.  Fix the up cleanup
910         code.
911
912 Wed Feb 18 16:24:02 1998  Tom Yu  <tlyu@mit.edu>
913
914         * Makefile.in: Remove trailing slash from thisconfigdir.  Fix up
915         BUILDTOP for new conventions.
916
917 Fri Feb 13 15:27:35 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
918
919         * Makefile.in: Added new file kfree.c, which contained all of the
920                 functions previously in the lib/krb5/free directory.
921
922 Mon Feb  2 17:02:29 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
923
924         * Makefile.in: Define BUILDTOP and thisconfigdir in the Makefile
925
926 Thu Feb  5 23:48:34 1998  Theodore Y. Ts'o  <tytso@mit.edu>
927
928         * rd_cred.c (krb5_rd_cred): 
929         * rd_safe.c (krb5_rd_safe): 
930         * rd_priv.c (krb5_rd_priv): Use the remote_subkey first, since the
931                 mk_* routines try to use their local_subkey first.
932                 Otherwise, the wrong keys will get used if subkeys are
933                 used in both directions.
934
935 Fri Jan  2 21:21:29 1998  Tom Yu  <tlyu@mit.edu>
936
937         * preauth.c (handle_sam_labels):
938         (obtain_sam_padata): Check return of malloc. [krb5-libs/518]
939
940         * chpw.c (krb5_mk_chpw_req): Check return of malloc.
941         (krb5_rd_chpw_rep): Check return of malloc. [krb5-libs/518]
942
943 Tue Dec 16 00:08:33 1997  Tom Yu  <tlyu@mit.edu>
944
945         * mk_req_ext.c (krb5_mk_req_extended): Check enctype of session
946         key, not that of the ticket, which we really shouldn't care about.
947
948 Sun Dec  7 07:24:23 1997  Ezra Peisach  <epeisach@dumpster.rose.brandeis.edu>
949
950         * gic_pwd.c (krb5_get_init_creds_password): Change fourth argument
951         in call to prompter (which is an int) from NULL to 0.
952
953 Sat Dec  6 02:28:17 1997  Tom Yu  <tlyu@mit.edu>
954
955         * Makefile.in: Add files chpw.c, gic_*, preauth2.c, vfy_increds.c,
956         vic_opt.c.
957
958         * chpw.c: New file; implement Cygnus chpw.
959
960         * get_in_tkt.c: Implement support for Cygnus initial credentials
961         API.
962
963         * gic_keytab.c: New file; Cygnus initial creds.
964
965         * gic_opt.c: New file; Cygnus initial creds.
966
967         * gic_pwd.c: New file; Cygnus initial creds.
968
969         * preauth.c: Add more SAM support (from Cygnus).
970
971         * preauth2.c: New file; additional SAM support from Cygnus.
972
973         * send_tgs.c: Account for additional parameter to sendto_kdc.
974
975         * vfy_increds.c: New file; Cygnus initial creds.
976
977         * vic_opt.c: New file; Cygnus initial creds.
978
979 Wed Oct 22 00:29:33 1997  Theodore Y. Ts'o  <tytso@mit.edu>
980
981         * send_tgs.c (krb5_send_tgs): Don't send a zero endtime; if the
982                 requested endtime is zero, set it equal to the TGT endtime.
983
984 Mon Oct  6 12:07:19 1997  Ezra Peisach  <epeisach@kangaroo.mit.edu>
985
986         * set_realm.c (krb5_set_principal_realm): Allocate extra byte for
987                 \0 after realm.
988
989 Mon Sep  1 21:38:16 1997  Tom Yu  <tlyu@mit.edu>
990
991         * rd_cred.c (krb5_rd_cred_basic): Fix swapped args to memset.
992
993 Fri Aug 29 16:41:25 1997  Tom Yu  <tlyu@mit.edu>
994
995         * get_in_tkt.c (krb5_get_in_tkt): Move nulling out of
996         request.padata before the os_localaddr call in order to avoid
997         freeing a null pointer in the cleanup code.
998
999 Tue Aug 12 09:13:22 1997  Ezra Peisach  <epeisach@mit.edu>
1000
1001         * init_ctx.c (krb5_init_context): Initialize local variable ctx
1002                 before calling krb5_init_ets.
1003
1004 Fri Aug  8 17:04:54 1997  Tom Yu  <tlyu@mit.edu>
1005
1006         * rd_cred.c (krb5_rd_cred_basic): Check remote_addr and
1007         encpart.s_address before calling krb5_address_compare.  Fixes
1008         krb5-libs/456.
1009
1010 Fri Jul 25 15:25:32 1997  Tom Yu  <tlyu@mit.edu>
1011
1012         * t_ser.c: Add support for changed kdb API.
1013
1014 Tue Jul 15 22:15:09 1997  Theodore Y. Ts'o  <tytso@mit.edu>
1015
1016         * serialize.c (krb5_register_serializer): Only copy over the old
1017                 table when there's an old table to copy over.  Otherwise,
1018                 BoundsChecker complains about memcpy(foo, NULL, 0).
1019
1020 Tue Mar 25 00:32:55 1997  Theodore Y. Ts'o  <tytso@mit.edu>
1021
1022         * preauth.c (obtain_sam_padata): Fix handling of the sam-timestamp
1023                 and sam-usec fields, which should always be set if the
1024                 nonce is not available, not just SAM_USE_SAD_AS_KEY is
1025                 being used.  [krb5-libs/325]
1026
1027 Mon Mar 24 12:21:38 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1028
1029         * t_ser.c: Clean up error reporting for krb5_init_context().  Also
1030                 report errors for each subtest, so we know which subtest
1031                 failed.
1032
1033 Sat Feb 22 22:39:49 1997  Richard Basch  <basch@lehman.com>
1034
1035         * Makefile.in: Use some of the new library list build rules in
1036                 win-post.in
1037
1038 Fri Feb 21 18:38:06 1997  Sam Hartman  <hartmans@tertius.mit.edu>
1039
1040         * crypto_glue.c: Move into libcrypto as krb5_glue.c; I need to
1041         avoid libcrypto depending on libkrb5
1042
1043 Wed Feb 19 14:21:12 1997  Theodore Y. Ts'o  <tytso@mit.edu>
1044
1045         * t_kerb.c (test_set_realm): New function used to test
1046         krb5_set_principal_realm().  Called by using the new "set_realm"
1047         command to t_kerb.
1048
1049         * set_realm.c (krb5_set_principal_realm): New function which sets
1050                 the realm of a principal.
1051
1052 Thu Feb 13 14:17:00 1997  Richard Basch  <basch@lehman.com>
1053
1054         * get_in_tkt.c (krb5_get_in_tkt): Initialize as_reply; if
1055                 krb5_os_localaddr() returns an error, the cleanup
1056                 routine may try to free a garbage pointer (as_reply).
1057
1058 Wed Feb 12 20:47:30 1997  Tom Yu  <tlyu@mit.edu>
1059
1060         * fwd_tgt.c (krb5_fwd_tgt_creds): Use the client's realm rather
1061                 than the server's realm for constructing the tgs principal.
1062                 Remove TC_MATCH_SRV_NAMEONLY from call to retrieve_cred()
1063                 because we want to get an exact match.
1064
1065 Mon Feb 10 10:41:36 1997  Ezra Peisach  <epeisach@mit.edu>
1066
1067         * crypto_glue.c (krb5_calculate_checksum): Add krb5_const to
1068                 krb5_pointer of in data to match prototype.
1069
1070 Sat Feb  8 15:02:39 1997  Richard Basch  <basch@lehman.com>
1071
1072         * get_creds.c:
1073                 Export krb5_get_credentials_{renew,validate} (win32)
1074                 Removed unused variable.
1075
1076 Fri Feb  7 09:41:33 1997  Richard Basch  <basch@lehman.com>
1077
1078         * mk_cred.c (krb5_mk_ncred): Declare ncred as krb5_int32 so that
1079                 the right value is pushed onto the stack when calling
1080                 krb5_mk_ncred_basic()
1081
1082         * copy_addrs.c fwd_tgt.c mk_cred.c:
1083                 Use FAR keyword in pointer declarations.
1084
1085         * sendauth.c (krb5_sendauth): Do not free the credentials if they
1086                 are being returned to the caller [krb5-libs/357]
1087
1088 Sun Feb  2 20:57:15 1997  Richard Basch  <basch@lehman.com>
1089
1090         * serialize.c: Added FAR declarations to pointer arguments for
1091                 all functions declared as KRB5_DLLIMP.
1092
1093 Thu Jan 30 21:44:37 1997  Richard Basch  <basch@lehman.com>
1094
1095         * crypto_glue.c:
1096                 Export more crypto-layer functions:
1097                 krb5_encrypt, krb5_decrypt, krb5_eblock_enctype,
1098                 krb5_process_key, krb5_finish_key, krb5_string_to_key,
1099                 krb5_init_random_key, krb5_finish_random_key, krb5_random_key
1100
1101 Sat Feb  8 18:41:42 1997  Tom Yu  <tlyu@mit.edu>
1102
1103         * Makefile.in:
1104         * configure.in: Update to new program build procedure.
1105
1106 Thu Jan  2 17:16:18 1997  Tom Yu  <tlyu@mit.edu>
1107
1108         * Makefile.in:
1109         * configure.in: Update to new library build procedure.
1110
1111 Mon Dec 23 17:20:03 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1112
1113         * Makefile.in (SRCS): Add brand.c to the SRCS line so that the
1114                 kerbsrc.mac.tar includes brand.c
1115
1116 Sat Dec 21 01:26:11 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1117
1118         * brand.c: New file, which allows a release engineer to "brand"
1119                 the krb5 library or a binary application program
1120                 statically linked against the krb5 library.  This file is
1121                 statically included by init_ctx.c, to force it be in a
1122                 binary library or application program.
1123         
1124         * init_ctx.c (krb5_init_context): Use new call krb5_vercheck() for
1125                 Windows timebomb checking; this call returns an error
1126                 code, which is returned to the user if the timebomb should
1127                 be activated.
1128
1129 Thu Nov 21 14:55:16 EST 1996    Richard Basch   <basch@lehman.com>
1130
1131         * Makefile.in: win32 build
1132
1133         * auth_con.c bld_pr_ext.c conv_princ.c copy_addrs.c copy_athctr.c
1134         copy_auth.c copy_cksum.c copy_creds.c copy_data.c copy_key.c
1135         copy_princ.c copy_tick.c cp_key_cnt.c decrypt_tk.c fwd_tgt.c
1136         gc_via_tkt.c get_creds.c get_in_tkt.c in_tkt_ktb.c in_tkt_pwd.c
1137         in_tkt_sky.c init_ctx.c mk_cred.c mk_error.c mk_priv.c mk_rep.c
1138         mk_req.c mk_req_ext.c mk_safe.c parse.c princ_comp.c rd_cred.c
1139         rd_error.c rd_priv.c rd_rep.c rd_req.c rd_safe.c recvauth.c
1140         sendauth.c str_conv.c unparse.c valid_times.c
1141                 DLL export various functions (see lib/krb5.def for full list)
1142
1143 Thu Nov 21 13:54:01 1996  Ezra Peisach  <epeisach@mit.edu>
1144
1145         * recvauth.c (krb5_recvauth): If there is an error, and the server
1146                 argument to krb5_recvauth is NULL, create a dummy server
1147                 entry for the krb5_error structure so that krb5_mk_error
1148                 will not die with missing required fields. [krb5-libs/209]
1149
1150 Wed Nov 13 14:30:47 1996  Tom Yu  <tlyu@mit.edu>
1151
1152         * init_ctx.c: Revert previous kt_default_name changes.
1153
1154 Tue Nov 12 22:07:33 1996  Tom Yu  <tlyu@mit.edu>
1155
1156         * init_ctx.c (krb5_init_context): Oops. Initialize kt_default_name
1157         to NULL.
1158         
1159         * init_ctx.c (krb5_free_context): Free kt_default_name if it's
1160         non-NULL.
1161
1162 Sat Nov  9 14:19:28 1996  Ezra Peisach  <epeisach@mit.edu>
1163
1164         * Makefile.in (check-unix): Invoking t_ser requires that
1165                 KRB5_CONFIG points to a valid krb5.conf 
1166
1167         * t_ser.c (main): If verbose flag is set and there is an error,
1168                 display error message.
1169
1170 Wed Nov  6 14:02:21 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1171
1172         * init_ctx.c (krb5_init_context): Initialize the error tables, so
1173                 applications don't need to call krb5_init_ets().
1174
1175 Tue Nov  5 08:09:23 1996  Ezra Peisach  <epeisach@mit.edu>
1176
1177         * serialize.c (krb5_register_serializer): Do not free a NULL pointer. 
1178
1179 Thu Oct 31 13:48:14 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1180
1181         * init_ctx.c (krb5_init_context): Make it more obvious that
1182                 default ticket lifetimes is not yet supported.
1183
1184 Tue Sep 24 20:59:14 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1185
1186         * get_in_tkt.c (make_preauth_list): Correctly null-terminate the
1187                 preauth list generated by make_preauth_list.
1188
1189 Thu Sep 19 12:29:59 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1190
1191         * unparse.c (krb5_unparse_name_ext): Make unparse correctly handle
1192                 a all cases where a principal contains a nulls, backspace,
1193                 newlines, or tabs.
1194
1195         * t_kerb.c (test_parse_principal): Add test for checking
1196                 krb5_parse_principal()
1197
1198         * parse.c (krb5_parse_name): Set all of the magic field values.
1199
1200 Wed Jul 24 17:09:39 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1201
1202         * preauth.c (find_pa_system): Change type of first argument to be
1203                 krb5_preauthtype, to eliminate compiler warnings under
1204                 Windows.
1205         
1206 Wed Jul 10 20:22:41 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1207
1208         * init_ctx.c (krb5_init_context): Add a call to krb5_win_do_init()
1209                 on Win16 and Win32 machines.  This is where we do timebomb
1210                 and version server checking.
1211
1212 Sun Jul  7 15:14:43 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1213
1214         * get_creds.c: (krb5_get_credentials_val_renew_core) Combine
1215                 common internals needed from krb5_get_credentials_validate()
1216                 and used by new function krb5_get_credentials_renew()
1217
1218         * gc_frm_kdc.c (krb5_get_cred_from_kdc_renew): A wrapper that
1219                 passes KDC_OPT_RENEW to the static
1220                 krb5_get_cred_from_kdc_opt so that kinit can use it.
1221
1222
1223 Mon Jun 24 09:45:04 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1224
1225         * bld_princ.c (krb5_build_principal_va): Change const to
1226                 krb5_const, so that it works on compilers that don't
1227                 support const.
1228
1229 Mon Jun 17 20:23:48 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1230
1231         * str_conv.c (krb5_string_to_timestamp): Ensure that all fields of
1232                 the timestamp are filled in if strptime does not fill in
1233                 unspecified fields.
1234
1235 Wed Jun 12 01:10:09 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1236
1237         * sendauth.c (krb5_sendauth): If ECCONABORTED is not defined, try
1238                 using the Winsock equivalent (WSAECONNABORTED).
1239
1240 Mon Jun 10 21:47:21 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1241
1242         * parse.c (krb5_parse_name): Change use of _WINDOWS to _MSDOS, and
1243                 add check for _WIN32.
1244
1245 Thu Jun  6 00:06:18 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1246
1247         * get_creds.c (krb5_get_credentials_core): A static function must
1248                 not use the INTERFACE keyword.
1249
1250 Tue May 14 18:39:22 1996  Richard Basch  <basch@lehman.com>
1251
1252         * mk_req_ext.c mk_safe.c send_tgs.c:
1253                 set the length field of the krb5_checksum structure before
1254                 calling krb5_calculate_checksum.
1255
1256         * str_conv.c: replaced sha-des3 cksum with hmac-sha.
1257
1258 Tue May 14 02:53:42 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1259
1260         * ser_ctx.c (krb5_context_size, krb5_context_externalize,
1261                 krb5_context_internalize): Add missing fields from the
1262                 serialized context: clockskew, default_kdc_req_sumtype,
1263                 default_ap_req_sumtype, default_safe_sumtype,
1264                 kdc_default_options, library_options, profile_secure,
1265                 fcc_default_format, scc_default_format.
1266
1267         * ser_actx.c (krb5_auth_context_size, krb5_auth_context_externalize,
1268                 krb5_auth_context_internalize): Serialize the two fields
1269                 req_cksumtype and safe_cksumtype, instead of the one
1270                 cksumtype field.
1271
1272         * mk_safe.c (krb_mk_safe): Use safe_cksumtype instead of cksumtype
1273                 in the auth context.
1274
1275         * mk_req_ext.c (krb5_mk_req_extended): Use req_cksumtype instead
1276                 of cksumtype in the auth context.
1277
1278         * init_ctx.c (krb5_init_context): Add support for new profile
1279                 relations libdefaults/tkt_lifetime,
1280                 libdefaults/kdc_req_checksum_type,
1281                 libdefaults/ap_req_cksumtype,
1282                 libdefaults/safe_checksumtype, and
1283                 libdefaults/kdc_default_options.
1284
1285         * auth_con.h: Remove old cksumtype element, and replace it with
1286                 req_cksumtype and safe_cksumtype.
1287
1288         * auth_con.c (krb5_auth_con_init): Initialize the req_cksumtype
1289                 and safe_cksumtype from the context's default
1290                 req_cksumtype and safe_cksumtype.
1291                 (krb5_auth_con_set_req_cksumtype,
1292                 krb5_auth_con_set_safe_cksumtype): New functions, to
1293                 replace old krb5_auth_con_setcksumtype
1294         
1295 Fri May 10 18:48:38 EDT 1996  Richard Basch  <basch@lehman.com>
1296
1297         * init_ctx.c: Removed des3-cbc-md5 default support
1298
1299 Fri May 10 02:51:17 1996  Richard Basch  <basch@lehman.com>
1300
1301         * str_conv.c: changes des3-md5 to des3-sha & added sha cksum types
1302
1303 Sun May  5 09:46:18 1996  Ezra Peisach  (epeisach@kangaroo.mit.edu)
1304
1305         * preauth.c: Add casts and const keywords as needed.
1306
1307 Fri May  3 00:15:18 1996  Mark Eichin  <eichin@cygnus.com>
1308
1309         * get_creds.c (krb5_get_credentials_core): new function. Common
1310         part of krb5_get_credentials and krb5_get_credentials_validate.
1311         Some formerly local variables are now arguments.
1312         (krb5_get_credentials): same as before, but calls _core to do some
1313         of the work.
1314         (krb5_get_credentials_validate): uses
1315         krb5_get_cred_from_kdc_validate and only stores the returned
1316         credential in the cache, instead of storing all of them.
1317
1318 Thu May  2 22:48:56 1996  Mark Eichin  <eichin@cygnus.com>
1319
1320         * gc_frm_kdc.c (krb5_get_cred_from_kdc_opt): new function. Same
1321         body as krb5_get_cred_from_kdc, but takes one new argument,
1322         kdcopts, and combines it with the other kdc options when calling
1323         krb5_get_cred_via_tkt. This is static and only called by
1324         (krb5_get_cred_from_kdc): a wrapper that provides the same
1325         function it did before, and
1326         (krb5_get_cred_from_kdc_validate): a wrapper that passes
1327         KDC_OPT_VALIDATE, so that kinit can use it.
1328         We'll probably need another one for renewing tickets as well.
1329
1330         * rd_req_dec.c (krb5_rd_req_decoded_opt): new function. Same body
1331         as krb5_rd_req_decoded, but takes one new argument,
1332         check_valid_flag, to determine whether or not to check if the
1333         "invalid flag" is set in the ticket. Also made static, so that it
1334         is only called via:
1335         (krb5_rd_req_decoded): wrapper for krb5_rd_req_decoded_opt that
1336         specifies the "invalid flag" gets checked, and
1337         (krb5_rd_req_decoded_anyflag): wrapper for krb5_rd_req_decoded_opt
1338         that specifies that the "invalid flag" doesn't get checked. (This
1339         version is only called from kdc_util.c:kdc_process_tgs_req.)
1340
1341 Wed May  1 14:30:29 1996  Richard Basch  <basch@lehman.com>
1342
1343         * srv_rcache.c (krb5_get_server_rcache): include the uid in the
1344                 default server replay cachename, for systems with geteuid.
1345
1346         * configure.in: test if the system has geteuid()
1347
1348 Wed May  1 02:26:53 1996  Mark Eichin  <eichin@cygnus.com>
1349
1350         * str_conv.c (krb5_string_to_timestamp): double check that
1351         strptime at least parsed *some* of the string, avoid degenerate
1352         cases from GNU libc strptime.
1353
1354 Tue Apr 30 18:19:01 1996  Ken Raeburn  <raeburn@cygnus.com>
1355
1356         * t_ser.c (stuff): New variable.
1357         (ser_acontext_test, ser_eblock_test, ser_cksum_test): Use it,
1358         instead of assuming it's valid to treat &FUNCTION as a data
1359         pointer.
1360
1361         * conv_princ.c (sconv_list): Now const.
1362         (krb5_*_conv_principal): Use pointer to const for it.
1363
1364         Tue Apr 23 19:39:59 1996  Mark Eichin  <eichin@cygnus.com>
1365
1366         * get_creds.c (krb5_get_credentials): this isn't the kernel, so
1367         don't return negative errno values.
1368
1369 Sat Apr 27 19:14:21 1996  Richard Basch  <basch@lehman.com>
1370
1371         * fwd_tgt.c (krb5_fwd_tgt_creds): fixed a possible null dereference.
1372
1373 Wed Apr 17 14:22:10 1996  Theodore Y. Ts'o  <tytso@mit.edu>
1374
1375         * conv_princ.c: Added ftp and ecat to the list of services which
1376                 should be converted.  This really ought to be something
1377                 that's configurable in the profile...
1378
1379 Thu Apr 11 21:30:23 1996  Theodore Y. Ts'o  <tytso@dcl>
1380
1381         * init_ctx.c (krb5_init_context): On a Macintosh, turn on
1382                 kdc_timesync and use the v4 credentials cache by default.
1383
1384         * get_in_tkt.c (stash_as_reply, verify_as_reply): Move time offset
1385                 code from stash_as_reply to verify_as_reply, and fix it so
1386                 that it actually works.
1387
1388 Wed Apr  3 16:04:36 1996  Theodore Y. Ts'o  <tytso@dcl>
1389
1390         * rd_req_dec.c (krb5_rd_req_decoded): Move code which
1391                 validated the ticket times to krb5_validate_times.
1392
1393         * valid_times.c (krb5_validate_times): New function which
1394                 determines whether or not the ticket times are valid.
1395
1396         * mk_req_ext.c (krb5_mk_req_extended): Call krb5_validate_time()
1397                 to determine whether or not the ticket in passed-in
1398                 credentials is valid.  If it isn't, return an error right
1399                 away. 
1400
1401 Wed Mar 27 17:05:47 1996  Richard Basch  <basch@lehman.com>
1402
1403         * in_tkt_ktb.c (keytab_keyproc): Do not check to see that the
1404         enctype of the key is identical; there are several equivalent
1405         DES enctypes.
1406
1407         * in_tkt_ktb.c (krb5_get_in_tkt_with_keytab): Removed the fancy
1408         logic to only request the keytypes that correspond to those in
1409         the keytab.  There were too many fencepost conditions that could
1410         get you into trouble.  Either it should be there and *fully*
1411         functional, or not in there at all.  Besides, there are too many
1412         other components in Kerberos that expect the end-service to know
1413         all its keys that this sanity check is overkill.
1414
1415 Tue Mar 26 14:45:03 1996  Richard Basch  <basch@lehman.com>
1416
1417         * conv_princ.c: added "imap" service to the conversion list as
1418         requiring domain conversion for the instance.  (imap/<host> is used
1419         by some of the new imap mail implementations)
1420
1421 Sun Mar 24 01:34:14 1996  Sam Hartman  <hartmans@tertius.mit.edu>
1422
1423         * send_tgs.c (krb5_send_tgs_basic): You want to setup the eblock
1424         used for the authenticator using the in_cred->keyblock, *not*
1425         request.ticket.enc_part.enctype.  Under a multi-enctype system,
1426         the session key may be different from the ticket key.
1427
1428 Wed Mar 20 23:00:59 1996  Theodore Y. Ts'o  <tytso@dcl>
1429
1430         * walk_rtree.c (krb5_walk_realm_tree): Fix 16bit vs. 32bit error.
1431                 (cap_code should been a krb5_error_code, not an int!)
1432
1433         * mk_cred.c (krb5_mk_ncred_basic): Fix windows lint flame.
1434
1435         * get_in_tkt.c (krb5_get_in_tkt): Fix 16bit vs. 32bit error.
1436                 (do_more should not have been an int!)
1437
1438 Tue Mar 19 13:03:26 1996  Richard Basch  <basch@lehman.com>
1439
1440         * in_tkt_ktb.c (krb5_get_in_tkt_with_keytab):
1441         Only request keytypes that correspond to those in the keytab.
1442
1443 Mon Mar 18 21:49:39 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1444
1445         * configure.in: Add KRB5_RUN_FLAGS
1446
1447         * Makefile.in: Use runtime flags.
1448
1449 Sun Mar 17 20:32:08 1996  Ezra Peisach  <epeisach@dumpster.rose.brandeis.edu>
1450
1451         * configure.in: Add USE_ANAME, USE_KRB5_LIBRARY, KRB5_LIBRARIES so
1452                 that Makefile does not have to know build tree layout.
1453
1454         * Makefile.in: Rework to be consistant with configure defines so
1455                 that configure can specify other needed libraries.
1456
1457 Sun Mar 17 02:10:19 1996  Mark W. Eichin  <eichin@cygnus.com>
1458
1459         * copy_addrs.c (krb5_copy_addr): make non-static so we can use it
1460         in mk_cred.
1461         * mk_cred.c (krb5_mk_ncred_basic): copy local_addr and remote_addr
1462         instead of just aliasing them, so we can safely free them ourselves.
1463
1464 Fri Mar 15 14:29:00 1996  Richard Basch  <basch@lehman.com>
1465
1466         * in_tkt_ktb.c: Close the keytab if we opened it, not if the
1467         caller opened it.
1468
1469 Wed Mar 13 17:31:30 1996  Ken Raeburn  <raeburn@cygnus.com>
1470
1471         * configure.in: Use AC_HEADER_STDARG.
1472
1473 Mon Mar 11 11:15:26 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1474
1475         * str_conv.c (krb5_timestamp_to_string): Handle statement not
1476                 reached warning.
1477
1478         * ser_addr.c (krb5_address_internalize): Add magic numbers
1479
1480 Thu Feb 29 11:49:38 1996  Theodore Y. Ts'o  <tytso@dcl>
1481
1482         * fwd_tgt.c (NEED_SOCKETS): Use NEED_SOCKETS instead of #including
1483                 <netdb.h>
1484
1485 Sat Feb 24 16:27:54 1996  Theodore Y. Ts'o  <tytso@dcl>
1486
1487         * gc_via_tkt.c (krb5_get_cred_via_tkt): Fix memory leak; free
1488                 enctypes after use.
1489
1490 Thu Jan 25 01:35:52 1996  Sam Hartman  <hartmans@tertius.mit.edu>
1491
1492         * rd_req_dec.c (krb5_rd_req_decrypt_tkt_part): Remove outdated
1493         comment about mapping etype to ktype.
1494
1495         * gc_via_tkt.c (krb5_get_cred_via_tkt): If the keyblock.enctype is
1496         non-null in in_cred, then request that particular key.
1497
1498 Wed Jan 24 21:48:53 1996  Sam Hartman  <hartmans@tertius.mit.edu>
1499
1500         * get_creds.c (krb5_get_credentials): Only match against enctype
1501         if it is non-null in increds.
1502
1503 Sun Jan 21 23:32:53 1996  Tom Yu  <tlyu@dragons-lair.MIT.EDU>
1504
1505         * gc_via_tkt.c (krb5_kdcrep2creds): Set is_skey so get_creds won't
1506                 break trying to match is_skey in the ccache.  This way we
1507                 won't end up with many copies of user-to-user tickets.
1508
1509 Fri Jan 19 23:16:17 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1510
1511         * mk_req.c (krb5_mk_req): krb5_get_credentials does not take
1512                 default_kdc_options. 
1513
1514         * sendauth.c (krb5_sendauth): krb5_get_credentials does not take
1515                 default_kdc_options. 
1516
1517 Wed Jan 10 21:01:36 1996  Theodore Y. Ts'o  <tytso@dcl>
1518
1519         * init_ctx.c (krb5_init_context): Added checking of profile for
1520                 DCE compatability options (ccache type, and checksum type).
1521
1522         * fwd_tgt.c (krb5_fwd_tgt_creds): Initialize addrs to 0 so that we
1523                 don't try to free stack garbage on an error.
1524
1525         * krbconfig.c, Makefile.in: Removed krbconfig.c; it contained
1526                 global variables which are no longer used.
1527
1528         * recvauth.c: Removed the global extern of
1529                 krb5_kdc_default_options, which wasn't being used anyway.
1530
1531         * mk_req.c (krb5_mk_req): Replace use of krb5_kdc_default_options
1532                 with context->kdc_default_options.
1533
1534         * gc_frm_kdc.c: Remove the global extern of krb5_kdc_req_sumtype,
1535                 which wasn't being used anymore anyway.
1536
1537         * send_tgs.c (krb5_send_tgs_basic): Remove use of the global
1538                 variable krb5_kdc_req_sumtype, and use the kdc_req_sumtype
1539                 in the context structure instead.
1540
1541         * walk_rtree.c (krb5_walk_realm_tree): Applied patch submitted by
1542                 Doug Engbert, so that the configurable authentication
1543                 patch takes into account the null entry at the end of the
1544                 list.
1545
1546 Tue Jan  9 22:04:09 1996  Theodore Y. Ts'o  <tytso@dcl>
1547
1548         * fwd_tgt.c (krb5_fwd_tgt_creds): New function which handles all
1549                 of the dirty work of forwarding TGT's.
1550
1551         * rd_cred.c (krb5_rd_cred_basic): Clean up memory allocation
1552                 discpline to remove memory leaks.
1553
1554         * mk_cred.c (krb5_mk_ncred_basic, krb5_mk_ncred, krb5_mk_1cred):
1555                 Clean up memory allocation discpline to remove memory
1556                 leaks.
1557
1558         * init_ctx.c (krb5_get_tgs_ktypes): Clean up parsing of the etype
1559                 list.  Don't overrun the string containing the etype list.
1560
1561 Wed Jan  3 21:32:59 1996  Theodore Y. Ts'o  <tytso@dcl>
1562
1563         * rd_cred.c (krb5_rd_cred_basic): When the keyblock is NULL,
1564                 assume we're being called from the gssapi code, which
1565                 doesn't have access to the sender or receive address
1566                 information, don't check the sender address, since it
1567                 won't be available.
1568
1569         * rd_cred.c (decrypt_credencdata): When calling krb5_rd_credd(),
1570                 if the keyblock is null, just copy the encoded structure
1571                 from the "ciphertext" part of the structure and decode it.
1572
1573         * mk_cred.c (encrypt_credencpart):  When calling krb5_mk_cred(), if
1574                 the keyblock is NULL, don't encrypt it; just encode it and
1575                 leave it in the ciphertext area of the structure.
1576
1577 Thu Dec 21 18:47:54 1995  Theodore Y. Ts'o  <tytso@dcl>
1578
1579         * rd_rep.c (krb5_rd_rep): Change use of
1580                 KRB5_SENDAUTH_MUTUAL_FAILED to KRB5_MUTUAL_FAILED.
1581
1582 Tue Dec 19 17:15:40 1995  Theodore Y. Ts'o  <tytso@dcl>
1583
1584         * rd_cred.c (krb5_rd_cred_basic): Missing parenthesis meant that
1585                 wrong number of bytes was being allocated.
1586
1587 Sun Dec  3 11:49:09 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1588
1589         * Makefile.in (SRCS/OBJS): Move compat_recv.c to krb5util library.
1590
1591 Fri Dec  1 17:04:43 1995  Theodore Y. Ts'o  <tytso@dcl>
1592
1593         * recvauth.c (krb5_recvauth): Initialize rcache to zero, so that
1594                 on cleanup we don't try to free stack garbage.
1595
1596 Sun Nov 26 19:31:18 1995  Tom Yu  <tlyu@dragons-lair.MIT.EDU>
1597
1598         * preauth.c: Ultrix is broken.  Prototype obtain_enc_ts_padata()
1599                 and process_pw_salt() explicitly rather than using the
1600                 typedef in k5-int.h becaus that typedef is to a function
1601                 pointer now.
1602
1603 Fri Nov 17 22:35:52 1995  Theodore Y. Ts'o  <tytso@dcl>
1604
1605         * get_in_tkt.c (decrypt_as_reply): 
1606         * preauth.c (process_pw_salt): When fetching the key to decrypting
1607                 the encrypted kdc reply, use the etype associated with the
1608                 etype reply, not the etype associated with the included
1609                 ticket. 
1610
1611         * encode_kdc.c: Remove eblock argument from krb5_encode_kdc_rep;
1612                 set the eblock type from the client_key's enctype.
1613
1614 Thu Nov 16 20:29:17 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1615
1616         * srv_rcache.c (krb5_get_server_rcache): Use krb5_rc_default_type
1617                 instead of assuming default rcache type is "dfl".
1618
1619 Mon Nov 13 14:40:05 1995    <tytso@rsts-11.mit.edu>
1620
1621         * walk_rtree.c (krb5_walk_realm_tree): Added ANL changes to
1622                 support configuration authentication paths.
1623
1624 Mon Nov 13 12:57:12 1995  Theodore Y. Ts'o  <tytso@dcl>
1625
1626         * preauth.c (krb5_process_padata): Added generalized processing
1627                 for preauth information which is returned by the KDC.
1628                 This should be general enough to support the AFS3_SALT
1629                 preauth type, the SNK4 preauth type, and the public-key
1630                 mods to Kerberos.
1631         (process_pw_salt): New function for processing the KRB5_PW_SALT
1632                 preauthentication type.
1633
1634         * get_in_tkt.c (decrypt_as_reply): Removed temporary kludge for
1635                 processing the PW_SALT preauth type; that's now done in
1636                 preauth.c
1637         (krb5_get_in_tkt): Call krb5_process_padata with new arguments so
1638                 that the preauth code can set the decryption_key if
1639                 necessary. 
1640                 
1641 Thu Nov 09 17:05:57 1995  Chris Provenzano (proven@mit.edu)
1642
1643         * in_tkt_pwd.c : Remove krb5_enctype from krb5_string_to_key() args.
1644
1645 Thu Nov  9 00:02:43 1995  Theodore Y. Ts'o  <tytso@dcl>
1646
1647         * get_in_tkt.c (krb5_get_in_tkt): Remove the etype_info argument
1648                 from the call to krb5_obtain_padata.
1649
1650         * preauth.c (krb5_obtain_padata): Use the PADATA_ETYPE_INFO
1651                 preauth, if it exists, to determine which salt type to use
1652                 when encrypting the preauthentication data.  Remove the
1653                 etype_info argument.
1654
1655 Wed Nov  8 02:50:59 1995  Theodore Y. Ts'o  <tytso@dcl>
1656
1657         * krbconfig.c: Removed the krb5_clockskew variable.
1658
1659         * srv_rcache.c (krb5_get_server_rcache): 
1660         * rd_safe.c (krb5_rd_safe): 
1661         * rd_req_dec.c (krb5_rd_req_decoded): 
1662         * rd_priv.c (krb5_rd_priv): 
1663         * rd_cred.c (krb5_rd_cred): 
1664         * gc_via_tkt.c (krb5_get_cred_via_tkt): 
1665         * get_in_tkt.c (verify_as_reply): Replace use of krb5_clockskew
1666                 with context->clockskew.
1667
1668         * encrypt_tk.c (cleanup_scratch): Changed interface to no longer
1669                 require an eblock; we can use our own and figure out the
1670                 enctype from the passed-in key.
1671
1672         * get_in_tkt.c (krb5_get_in_tkt): Added calls to
1673                 krb5_obtain_padata(). 
1674
1675         * preauth.c: Completely restructured file to support
1676                 preauthentication. 
1677                 
1678
1679 Fri Oct 27 22:15:33 1995  Theodore Y. Ts'o  <tytso@dcl>
1680
1681         * get_in_tkt.c (krb5_get_in_tkt): Extensive reworking of the
1682                 structure of this file to make it possible to support
1683                 preauthentication.
1684
1685 Mon Oct 23 17:08:59 1995  Theodore Y. Ts'o  <tytso@dcl>
1686
1687         * in_tkt_pwd.c (krb5_get_in_tkt_with_password): Fix to properly
1688                 malloc password buffer.
1689
1690 Mon Oct 23 11:09:56 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1691
1692         * rd_req_dec.c (krb5_rd_req_decoded): For heirarchal cross-realm,
1693                 set the length after initializing string.
1694
1695         * rd_req.c (krb5_rd_req): If a new auth_context is created
1696                 and then there is an error, make sure return pointer is not
1697                 looking at freed memory.
1698
1699 Fri Oct  6 22:04:42 1995  Theodore Y. Ts'o  <tytso@dcl>
1700
1701         * Makefile.in: Remove ##DOS!include of config/windows.in.
1702                 config/windows.in is now included by wconfig.
1703
1704 Fri Sep 29 00:08:53 1995  Theodore Y. Ts'o  <tytso@dcl>
1705
1706         * gc_via_tkt.c (krb5_get_cred_via_tkt): Only check the returned
1707                 starttime to make sure it matches the requested starttime
1708                 if we requested a postdated ticket.
1709
1710 Thu Sep 28 22:58:53 1995  Theodore Y. Ts'o  <tytso@dcl>
1711
1712         * conv_princ.c (krb5_425_conv_principal): Only convert instances
1713                 which don't have a '.' in them.  If they have a '.',
1714                 assume that they are fully qualified already.
1715
1716 Thu Sep 28 12:00:00 1995  John Rivlin <jrivlin@fusion.com)
1717
1718         * gc_via_tkt.c: Cleaned up corrupt ticket error testing to 
1719                 make it more debugable and I think work around a compiler
1720                 bug.
1721
1722 Mon Sep 25 16:57:59 1995  Theodore Y. Ts'o  <tytso@dcl>
1723
1724         * Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
1725                 Makefile. 
1726
1727 Wed Sep 13 10:58:20 1995 Keith Vetter (keithv@fusion.com)
1728
1729         * get_in_t.c: removed unused variable.
1730         * rd_cred.c: removed INTERFACE keyword.
1731         * ser_auth.c: passing int32 where a size_t is wanted.
1732         * ser_ctx.c: 16/32 bit int size mismatch.
1733
1734 Sun Sep 17 23:41:19 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1735
1736         * rd_safe.c: Fix typo error.
1737
1738 Sat Sep 16 01:23:14 1995  Theodore Y. Ts'o  <tytso@dcl>
1739
1740         * sendauth.c (krb5_sendauth): Make sure the scratch credentials
1741                 structure may have possible been used be freed..
1742
1743         * rd_safe.c (krb5_rd_safe_basic): Fall through to the cleanup code
1744                 at the end, to make sure the decoded message in message is
1745                 freed.
1746
1747         * rd_req_dec.c (krb5_rd_req_decoded): Use krb5_copy_keyblock to
1748                 copy authent->subkey to auth_context->remote_subkey.
1749                 Keeping them separate avoids aliasing problems.
1750
1751         * mk_req_ext.c (krb5_generate_authenticator): Fix memory leak.
1752                 Don't bash authent->subkey with key after carefully
1753                 copying it using krb5_copy_keyblock!
1754
1755         * recvauth.c (krb5_recvauth): krb5_get_server_rcache() already
1756                 opens the rcache; doing it again merely causes a memory leak.
1757
1758 Fri Sep 15 17:20:08 1995  Theodore Y. Ts'o  <tytso@dcl>
1759
1760         * gen_subkey.c (krb5_generate_subkey): Eliminate memory leak.
1761                 krb5_init_random_key() does its own allocation of the
1762                 keyblock.
1763
1764         * gc_via_tkt.c (krb5_kdcrep2creds): Fix memory leak.
1765
1766         * srv_rcache.c (krb5_get_server_rcache): Fix memory leak.
1767
1768         * rd_safe.c (krb5_rd_safe_basic): Fix memory leak.
1769
1770 Tue Sep 12 12:40:30 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1771
1772         * t_ser.c (ser_cksum_test): Work around an optimizer bug unser
1773                 OSF/1 and gcc.
1774
1775 Sun Sep 10 12:00:00 1995        James Mattly    (mattly@fusion.com)
1776
1777         * gen_seqnum.c:  change usage of krb5_crypto_us_timeofday to krb5_timeofday
1778         * get_in_tkt.c:  change usage of  krb5_crypto_us_timeofday to krb5_timeofday
1779         * mk_priv.c: change usage of krb5_crypto_us_timeofday to krb5_timeofday
1780         * mk_req_ext.c: change usage of krb5_crypto_us_timeofday to krb5_timeofday
1781         * send_tgs.c: change usage of krb5_timeofday over to krb5_crypto_us_timeofday
1782
1783 Wed Sep 06 14:20:57 1995   Chris Provenzano (proven@mit.edu)
1784
1785         * auth_con.c, decrypt_tk.c, encode_kdc.c, encrypt_tk.c,
1786         * gc_frm_kdc.c, gen_seqnum.c, get_creds.c, get_in_tkt.c,
1787         * in_tkt_ktb.c, in_tkt_pwd.c, in_tkt_sky.c, init_ctx.c,
1788         * kdc_rep_dc.c, mk_cred.c, mk_priv.c, mk_rep.c, mk_req._ext.c,
1789         * preauth.c, rd_cred.c, rd_priv.c, rd_rep.c, rd_req_dec.c,
1790         * send_tgs.c, sendauth.c, ser_actx.c, ser_ctx.c, ser_eblk.c,
1791         * ser_key.c, t_ser.c : s/keytype/enctype/g, s/KEYTYPE/ENCTYPE/g
1792
1793 Wed Sept 6 12:00:00 EDT 1995    James Mattly    (mattly@fusion.com)
1794
1795         * get_in_tkt.c:  change usage of krb5_timeofday to krb5_crypto_us_timeofday
1796         * mk_req_ext.c: change usage of timeofday
1797         * parse.c:  disabled a usage of exit for macintosh
1798         * send_tgs.c: change usage of krb5_timeofday over to
1799                 krb5_crypto_us_timeofday
1800         * unparse.c: include <stdio.h>
1801
1802
1803 Tue Sep 05 22:10:34 1995   Chris Provenzano (proven@mit.edu)
1804
1805         * decode_kdc.c, decrypt_tk.c, encode_kdc.c, encrypt_tk.c, gc_frm_kdc.c
1806         * gc_via_tkt.c, get_in_tkt.c, in_tkt_ktb.c, in_tkt_pwd.c, in_tkt_sky.c
1807         * init_ctx.c, kdc_rep_dc.c, mk_cred.c, mk_priv.c, mk_rep.c
1808         * mk_req_ext.c, rd_cred.c, rd_priv.c, rd_rep.c, rd_req_dec.c,
1809         * send_tgs.c, ser_ctx.c, ser_eblk.c, ser_key.c, t_ser.c: 
1810                 Remove krb5_enctype references, and replace with
1811                 krb5_keytype where appropriate
1812
1813 Fri Sep  1 20:03:41 1995  Theodore Y. Ts'o  <tytso@dcl>
1814
1815         * get_in_tkt.c (krb5_get_in_tkt): If kdc_settime is enabled, then
1816                 set the time_offset fields from the returned ticket's
1817                 authtime value.
1818
1819         * init_ctx.c (krb5_init_context): Initialize new fields in
1820                 krb5_context (clockskew, kdc_req_sumtype, and
1821                 kdc_default_options).
1822
1823         * gc_via_tkt.c (krb5_get_cred_via_tkt): Perform the necessary
1824                 sanity checking on the KDC response to make sure we detect
1825                 tampering.
1826   
1827         * send_tgs.c (krb5_send_tgs): Set the expected nonce in the
1828                 response structure.
1829
1830         * krbconfig.c: Set the default checksum to use MD5
1831
1832 Fri Sep 1 11:16:43 EDT 1995     Paul Park       (pjpark@mit.edu)
1833         * ser_ctx.c - Add handling of new time offset fields in the os_context.
1834
1835
1836 Tue Aug 29 14:14:26 EDT 1995    Paul Park       (pjpark@mit.edu)
1837         * Makefile.in, .Sanitize, ser_{actx,adata,addr,auth,cksum,ctx,eblk,key,
1838                 princ}.c, serialize.c, t_ser.c - Add serialization operations
1839                 for data structures required to serialize krb5_context, krb5_
1840                 auth_context, krb5_encrypt_block and krb5_principal.
1841         * auth_con.h - Add magic number.
1842         * auth_con.c - Add static routine to copy an address and use this
1843                 instead of the other code.  Set the magic number when initing
1844                 an auth_context.  Use krb5_free_address to release an address.
1845         * init_ctx.c - Free the allocated serializers when releasing context.
1846         * rd_rep.c - Copy the keyblock from the message instead of setting
1847                 a pointer into it.
1848
1849 Thu Aug 24 18:55:50 1995  Theodore Y. Ts'o  <tytso@dcl>
1850
1851         * .Sanitize: Update file list.
1852
1853 Mon Aug  7 18:54:35 1995  Theodore Y. Ts'o  <tytso@dcl>
1854
1855         * in_tkt_ktb.c (keytab_keyproc): If there is an error looking up
1856                 the key, make sure the keytab is closed as part of the
1857                 cleanup. 
1858
1859 Fri Aug  4 22:04:08 1995  Tom Yu  <tlyu@dragons-lair.MIT.EDU>
1860
1861         * conv_princ.c: Add braces to initializer to shut up gcc -Wall
1862
1863 Fri Jul 7 16:31:06 EDT 1995     Paul Park       (pjpark@mit.edu)
1864         * Makefile.in - Find com_err in TOPLIBD.
1865         * rd_safe.c - Use checksum verifier instead of doing it manually.
1866
1867 Thu Jul  6 17:31:40 1995  Tom Yu  <tlyu@lothlorien.MIT.EDU>
1868
1869         * rd_safe.c (krb5_rd_safe_basic): Pass context to os_localaddr.
1870
1871         * rd_priv.c (krb5_rd_priv_basic): Pass context to os_localaddr.
1872
1873         * rd_cred.c (krb5_rd_cred_basic): Pass context to os_localaddr.
1874
1875         * get_in_tkt.c (krb5_get_in_tkt): Pass context to os_localaddr.
1876
1877 Wed July  5 15:52:31 1995  James Mattly  <mattly@fusion.com>
1878         * added condition for _MACINTOSH
1879
1880 Sun Jul  2 18:59:53 1995  Sam Hartman  <hartmans@tertius.mit.edu>
1881
1882         * recvauth.c (krb5_recvauth): recvauth should send an error reply
1883         if problem is not zero. Removed if that caused it to only send a
1884         reply on success.
1885
1886 Fri Jun 16 22:11:21 1995  Theodore Y. Ts'o  (tytso@dcl)
1887
1888         * get_in_tkt.c (krb5_get_in_tkt): Allow the credentials cache
1889                 argument to be optional; allow it to be NULL, meaning that
1890                 the credentials shouldn't be stored in a credentials cache.
1891
1892 Mon Jun 12 16:49:42 1995  Chris Provenzano (proven@mit.edu)
1893
1894         A couple bug reports/patches from Ed Phillips (flaregun@udel.edu)
1895         * in_tkt_ktb.c (keytab_keyproc()): Fix memory leak. 
1896         * recvauth.c (krb5_recvauth()): Don't open a new rcache if
1897                 the auth_context already has one.
1898         * auth_con.c (krb5_auth_con_free()): Close rcache is the
1899                 auth_context has one set.
1900         * auth_con.c (krb5_auth_con_getrcache()): Return pointer
1901                 to the rcache set in the auth_context.
1902
1903 Sun Jun 11 12:31:39 1995  Ezra Peisach  (epeisach@kangaroo.mit.edu)
1904
1905         * auth_con.c (krb5_auth_con_init): Zero newly allocated
1906                 krb5_auth_context. (Fixed error in redefinitions).
1907
1908 Sat Jun 10 23:05:51 1995  Tom Yu  (tlyu@dragons-lair)
1909
1910         * auth_con.c, compat_recv.c, mk_cred.c, mk_priv.c, mk_rep.c,
1911           mk_req.c, mk_req_ext.c, mk_safe.c, rd_cred.c, rd_priv.c,
1912           rd_rep.c, rd_req.c rd_req_dec.c, rd_safe.c, recvauth.c,
1913           sendauth.c: krb5_auth_context redefinitions
1914
1915 Fri Jun  9 18:48:43 1995    <tytso@rsx-11.mit.edu>
1916
1917         * rd_req_dec.c (krb5_rd_req_decoded): Fix -Wall nits
1918
1919         * configure.in: Remove standardized set of autoconf macros, which
1920                 are now handled by CONFIG_RULES.
1921
1922         * Makefile.in, faddr_ordr.c: Remove faddr_ordr.c; its function,
1923                 krb5_fulladdr_order, isn't used anywhere.
1924
1925 Fri Jun  9 02:42:54 1995  Tom Yu  (tlyu@dragons-lair)
1926
1927         * rd_cred.c (krb5_rd_cred_basic): fix typo (extra "context"
1928                 argument passed to krb5_xfree)
1929
1930 Thu Jun  8 22:48:27 1995  Theodore Y. Ts'o  <tytso@dcl>
1931
1932         * rd_cred.c (krb5_rd_cred_basic): Fix problem where the ticket
1933                 field was assigned with a krb5_data, which was then
1934                 immediately freed.
1935
1936 Thu Jun  8 16:06:44 1995    <tytso@rsx-11.mit.edu>
1937
1938         * compat_recv.c, auth_con.c, chk_trans.c, encrypt_tk.c,
1939                 gc_frm_kdc.c, gc_via_tkt.c, gen_seqnum.c, gen_subkey.c,
1940                 get_creds.c, get_in_tkt.c, in_tkt_ktb.c, in_tkt_pwd.c,
1941                 in_tkt_skey.c, init_ctx.c, kdc_rep_dc.c, mk_cred.c,
1942                 mk_error.c, mk_priv.c, mk_rep.c, mk_req.c, mk_req_ext.c,
1943                 mk_cred.c, mk_safe.c, parse.c, preauth.c, rd_cred.c,
1944                 rd_rep.c, rd_req.c, rd_req_dec.c, rd_safe.c, recvauth.c,
1945                 sendauth.c, send_tgs.c, srv_rcache.c, walk_rtree.c: Clean
1946                 up GCC -Wall flames.
1947
1948 Wed Jun  7 15:23:21 1995    <tytso@rsx-11.mit.edu>
1949
1950         * conv_princ.c (krb5_425_conv_principal): Remove old CONFIG_FILES
1951                 code. 
1952
1953 Fri May 26 10:18:28 1995 Keith Vetter (keithv@fusion.com)
1954
1955         * makefile.in: removed for the PC creating shared directory.
1956           (still bug with the '@SHARED_RULE@' line but I'm waiting
1957           on tytso for that since I don't want to break Unix).
1958
1959 Thu May 25 09:58:42 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1960
1961         * gc_via_tkt.c (krb5_kdcrep2creds): Fix syntax error in the
1962                 freeing of the keyblock.
1963
1964 Wed May 24 18:19:17 1995  Theodore Y. Ts'o  (tytso@dcl)
1965
1966         * Makefile.in, configure.in: Add rules for building shared library.
1967
1968         * gc_via_tkt.c (krb5_kdcrep2creds): On an error, free the keyblock.
1969
1970 Tue May 23 16:28:42 1995  Theodore Y. Ts'o  (tytso@dcl)
1971
1972         * gc_frm_kdc.c, preauth.c, t_kerb.c, t_walk_rtree.c, unparse.c:
1973                 Rearrange #include files so that krb5.h gets included
1974                 first, so that the debugging information can be more
1975                 efficiently collapsed since the type numbers will be the
1976                 same.
1977
1978 Sat May 20 14:01:16 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1979
1980         * rd_safe.c (krb5_rd_safe): Increment remote_seq_number if
1981                 KRB5_AUTH_CONTEXT_DO_SEQUENCE is set.
1982
1983 Thu May 11 22:42:30 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1984
1985         * rd_cred.c (krb5_rd_cred_basic): If address don't match, return
1986                 KRB5KRB_AP_ERR_BADADDR (add missing retval).
1987
1988 Thu May 11 18:30:21 1995  Chris Provenzano (proven@mit.edu)
1989
1990         * mk_cred.c (krb5_mk_cred()), mk_priv.c (krb5_mk_priv()),
1991         * mk_safe.c (krb5_mk_safe()), rd_cred.c (krb5_rd_cred()),
1992         * rd_priv.c (krb5_rd_prev()), rd_safe.c (krb5_rd_safe()):
1993                 Pass the contents pointer returned from krb5_make_fulladdr()
1994                 to free() not the address of the pointer.
1995
1996 Tue May  9 08:34:21 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
1997
1998         * Makefile.in (clean): Remove t_kerb and t_kerb.o
1999
2000 Fri May  5 00:06:24 1995  Theodore Y. Ts'o  (tytso@dcl)
2001
2002         * conv_princ.c (krb5_425_conv_principal): Use new calling
2003                 convention of krb5_get_realm_domain, which is that it
2004                 returns the realm *without* the leading dot.
2005
2006                 Also use the profile code to look up individual instance
2007                 conversions using [realms]/<realm>/v4_instance_convert/<inst>
2008                 This allows special case handling of mit.edu and
2009                 lithium.lcs.mit.edu.
2010
2011         * t_kerb.c: New file for testing krb library functions.  Currently
2012                 only tests krb5_425_conv_principal.
2013
2014 Wed May 03 03:30:51 1995  Chris Provenzano (proven@mit.edu)
2015
2016         * recvauth.c, compat_recv.c (krb5_recvauth()): 
2017         * compat_recv.c (krb5_compat_recvauth()):
2018                 No longer needs the rc_type arg.
2019
2020 Tue May 02 19:29:18 1995  Chris Provenzano (proven@mit.edu)
2021
2022         * mk_cred.c (mk_cred()), mk_priv.c (mk_priv()), mk_safe.c (mk_safe()),
2023         * rd_cred.c (rd_cred()), rd_priv.c (rd_priv()), rd_safe.c (rd_safe()):
2024                 Don't call krb5_make_fulladdrs() if a port isn't specified.
2025
2026 Mon May 01 15:56:32 1995  Chris Provenzano (proven@mit.edu)
2027
2028         * auth_con.c (krb5_auth_con_free()) :
2029                 Free all the data associated with the auth_context.
2030
2031         * auth_con.c (krb5_auth_con_setkey()) : Removed.
2032         * mk_rep.c (mk_rep()),
2033                 The krb5_mk_rep() routine must always encode the data in
2034                 the keyblock of the ticket, not the subkey.
2035
2036         * cleanup.h, auth_con.c (krb5_auth_con_setports()) : Added.
2037         * auth_con.h, mk_cred.c (mk_cred()), mk_priv.c (mk_priv()),
2038         * mk_safe.c (mk_safe()), rd_cred.c (rd_cred()), 
2039         * rd_priv.c (rd_priv()), rd_safe.c (rd_safe()) :
2040                 Changes to auth_context to better support full addresses.
2041
2042 Sat Apr 29 00:09:40 1995  Theodore Y. Ts'o  <tytso@dcl>
2043
2044         * srv_rcache.c (krb5_get_server_rcache): Fix fencepost error which
2045                 caused an access beyond the allocated memory of piece->data.
2046
2047         * rd_priv.c (krb5_rd_priv_basic): Call krb5_free_priv_enc_part to free 
2048                 the entire privenc_msg structure.
2049
2050 Fri Apr 28 09:54:51 EDT 1995    Paul Park       (pjpark@mit.edu)
2051
2052         Move adm_rw.c from libkrb5 to libkadm.
2053
2054 Fri Apr 28 08:36:03 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
2055
2056         * init_ctx.c (krb5_free_context): Extra semicolon meant the etypes
2057                 field in the context was never being freed.
2058
2059 Fri Apr 28 01:44:51 1995  Chris Provenzano  (proven@mit.edu)
2060
2061         * send_tgs.c (krb5_send_tgs()), gc_via_tkt.c (krb5_get_cred_via_tkt()):
2062                 Removed krb5_cksumtype argument.
2063
2064 Thu Apr 27 21:36:01 1995  Chris Provenzano  (proven@mit.edu)
2065
2066         * auth_con.c (krb5_auth_con_getaddrs() and krb5_auth_con_getflags()):
2067                 Added for completeness.
2068         * mk_req_ext.c (krb5_mk_req_extended()) : Don't send the 
2069                 AP_OPTS_USE_SUBKEY option over the wire.
2070
2071 Thu Apr 27 17:40:20 1995 Keith Vetter (keithv@fusion.com)
2072
2073         * adm_rw.c, mk_cred.c, rd_cred.c:
2074            malloc on the PC must be size SIZE_T not int32.
2075         * adm_rw.c: krb5_free_adm_data second argument now a krb5_int32.
2076
2077 Thu Apr 27 16:33:17 EDT 1995    Paul Park       (pjpark@mit.edu)
2078
2079         * mk_priv.c     - Back out previous change which always put in
2080                           timestamp, regardless of DO_TIME setting and
2081                           instead, clear out the replaydata before calling
2082                           mk_priv_basic from mk_priv.
2083         * mk_safe.c     - Same replaydata fix.
2084
2085 Thu Apr 26 15:59:51 EDT 1995    Paul Park       (pjpark@mit.edu)
2086
2087         * Add adm_rw.c - routines to read and write commands from/to the
2088           administrative (kpasswd/kadmin) server.
2089
2090 Wed Apr 27 11:30:00 1995 Keith Vetter (keithv@fusion.com)
2091
2092         * init_ctx.c: krb5_init_context wasn't checking return values.
2093         * mk_req.c: deleted unused local variable.
2094
2095 Wed Apr 26 22:49:18 1995  Chris Provenzano  (proven@mit.edu)
2096
2097         * gc_via_tgt.c, and gc_2tgt.c : Removed.
2098         * Makefile.in, gc_via_tkt.c, gc_frm_kdc.c, and, int-proto.h : 
2099                 Replaced get_cred_via_tgt() and get_cred_via_2tgt()
2100                 with more general function get_cred_via_tkt().
2101
2102 Tue Apr 25 21:58:23 1995  Chris Provenzano  (proven@mit.edu)
2103
2104         * Makefile.in : Added gc_via_tkt.c and removed get_fcreds.c
2105         * auth_con.c (krb5_auth_con_setaddrs()) : Fixed so it allocates 
2106                 space and copies addresses, not just pointer.
2107         * mk_cred.c: Completely rewritten from sources donated by asriniva.
2108         * rd_cred.c: Completely rewritten from sources donated by asriniva.
2109         * mk_priv.c (krb5_mk_priv()), mk_safe.c (krb5_mk_safe()), 
2110           rd_priv.c (krb5_rd_priv()), and rd_safe (krb5_rd_safe()) : 
2111                 Try using a subkey before using the session key for encryption.
2112         * recvauth.c (krb5_recvauth()): Don't close the rcache on success.
2113
2114 Mon Apr 24 23:12:21 1995  Theodore Y. Ts'o  <tytso@dcl>
2115
2116         * Makefile.in, configure.in (t_walk_rtree): Add WITH_NETLIBS and
2117                 $(LIBS), so that t_walk_rtree can compile under solaris.
2118
2119 Mon Apr 24 17:09:36 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
2120
2121         * parse.c (krb5_parse_name): Add magic number to new structure
2122
2123         * get_creds.c: Fix comments describing operation
2124
2125         * gc_frm_kdc.c: Fix comments describing operation
2126
2127         * copy_cksum.c (krb5_copy_checksum): Fix comment in file
2128
2129         * copy_addrs.c (krb5_append_addresses): ifdef out unused
2130                 krb5_append_addresses function. (no API or prototype
2131                 existed). 
2132
2133         * copy_data.c (krb5_copy_data): Initialize magic number
2134
2135         * init_ctx.c (krb5_init_context): If an error is returned from
2136                 krb5_set_default_in_tkt_etypes or krb5_os_init_context,
2137                 pass to caller instead of stack garbage.
2138
2139 Sat Apr 22 11:06:45 1995  Ezra Peisach  (epeisach@kangaroo.mit.edu)
2140
2141         * Makefile.in: t_walk_rtree needs libcrypto
2142
2143         * t_walk_rtree.c: error in checking for argument count
2144
2145 Thu Apr 20 16:23:23 1995  Theodore Y. Ts'o  (tytso@dcl)
2146
2147         * copy_addrs.c, copy_athctr.c, copy_auth.c, copy_cksum.c,
2148         copy_creds.c, copy_key.c, copy_princ.c, copy_tick.c,
2149         gc_2tgt.c, gc_frm_kdc.c, gc_via_tgt.c, get_creds.c,
2150         mk_req_ext.c: Unless HAVE_C_STRUCTURE_ASSIGNMENT is defined, use
2151                 memcpy to copy structures around, instead of using
2152                 structure assignments.  (Which aren't guaranteed to work
2153                 on some broken compilers.)
2154
2155         * mk_req.c (krb5_mk_req): Use krb5_sname_to_principal() in order
2156                 to create the service principal from the service and
2157                 hostname pair.  This allows for the host cannoncialization
2158                 to work correctly.
2159
2160         * mk_req_ext.c (krb5_mk_req_extended): Revamp checksum handling
2161                 code so that no checksum is performed in in_data is NULL,
2162                 and the special case handing of cksumtype == 0x8003 for
2163                 the GSSAPI library is handled correctly.
2164
2165 Wed Apr 19 13:39:34 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
2166
2167         * init_ctx.c: (krb5_init_context) initialize context default
2168                 realm. (krb5_free_context) free default realm.
2169
2170 Fri Apr 14 15:05:51 1995    <tytso@rsx-11.mit.edu>
2171
2172         * sendauth.c (krb5_sendauth): initialize error return parameter
2173
2174         * copy_princ.c (krb5_copy_principal): Fix bug where
2175                 krb5_copy_principal can fail if it is asked to copy a
2176                 principal with a zero-length component on a system where
2177                 malloc(0) returns null. 
2178
2179 Thu Apr 13 15:49:16 1995 Keith Vetter (keithv@fusion.com)
2180
2181         * *.[ch]: removed unneeded INTERFACE from non-api functions.
2182
2183 Fri Mar 31 16:45:47 1995 Keith Vetter (keithv@fusion.com)
2184
2185         * krb5_get_in_tkt: changed error return value for when clocks
2186            are out of skew to be KRB5_KDCREP_SKEW.
2187
2188 Fri Mar 31 00:44:26 1995  Theodore Y. Ts'o  (tytso@dcl)
2189
2190         * rd_req.c (krb5_rd_req): Fix typo which caused new_keytab to not
2191                 get freed, causing a memory leak.
2192
2193 Thu Mar 30 15:49:27 1995 Keith Vetter (keithv@fusion.com)
2194
2195         * rd_req.c: removed unused local variable.
2196
2197 Tue Mar 28 18:34:20 1995  John Gilmore  (gnu at toad.com)
2198
2199         * rd_req_sim.c:  Really remove the file.
2200
2201 Mon Mar 27 08:34:49 1995 Chris Provenzano (proven@mit.edu)
2202
2203         * Makefile.in: Removed rd_req_sim.c
2204
2205         * auth_con.c: Default cksumtype is now CKSUMTYPE_RSA_MD4_DES.
2206
2207         * auth_con.c: Added krb5_auth_con_setuseruserkey(), 
2208                 krb5_auth_con_getkey(), 
2209                 krb5_auth_con_getremotesubkey(),
2210                 krb5_auth_con_getauthenticator(), 
2211                 krb5_auth_con_getremoteseqnumber(),
2212                 krb5_auth_con_initivector().
2213
2214         * auth_con.c: Fixed krb5_auth_con_getlocalsubkey() to check for
2215                 a valid local_subkey before calling krb5_copy_keyblock().
2216
2217         * auth_con.h: Fixed some comments.
2218
2219         * mk_req_ext.c (krb5_mk_req_extended()): Always pass in a seed
2220                 (the keyblock contents) to krb5_calculate_checksum()
2221
2222         * rd_rep.c (krb5_rd_rep()): Use appropriate key to decode reply.
2223
2224         * rd_safe.c (krb5_rd_safe()): Don't pass checksum to 
2225                 krb5_rd_safe_basic(), it's unnecessary.
2226
2227         * compat_recv.c (krb5_compat_recvauth()):
2228         * mk_rep.c (krb5_mk_rep()):
2229         * rd_req.c (krb5_rd_req()):
2230         * rd_req_dec.c (krb5_rd_req_decode()):
2231         * recvauth.c (krb5_recvauth()):
2232                 Added a krb5_auth_context argument and eliminated many of 
2233                 the other arguments because they are included in the
2234                 krb5_auth_context structure.
2235
2236
2237 Tue Mar 21 19:22:51 1995 Keith Vetter (keithv@fusion.com)
2238
2239         * mk_safe.c: fixed signed/unsigned mismatch.
2240         * rd_safe.c: removed unused local variable currentime.
2241         * mk_req_e.c: fixed signed/unsigned mismatch.
2242
2243 Sat Mar 18 18:58:02 1995  John Gilmore  (gnu at toad.com)
2244
2245         * bld_pr_ext.c, bld_princ.c:  Replace STDARG_PROTOTYPES with
2246         HAVE_STDARG_H for consistency.
2247
2248 Fri Mar 17 19:48:07 1995  John Gilmore  (gnu at toad.com)
2249
2250         * Makefile.in (check-mac):  Add.
2251         * compat_recv.c, get_fcreds.c, recvauth.c:  Eliminate Unix socket
2252         #includes, which are now handled by k5-int.h (via k5-config.h).
2253         * conv_princ.c:  Rename variable "comp" to another name; "comp"
2254         apparently bothers the MPW compiler...
2255         * rd_cred.c:  Avoid (void) casts of void functions, for MPW.
2256         * t_walk_rtree.c:  Put com_err.h after k5_int for <sys/types> stuff.
2257         (main):  Declare and initialize the krb5_context that's being
2258         passed to everything.
2259
2260 Fri Mar 10 10:58:59 1995  Chris Provenzano (proven@mit.edu)
2261
2262         * auth_con.h auth_con.c Added for krb5_auth_con definition and
2263                 support routines.
2264
2265         * mk_req.c (krb5_mk_req())
2266         * mk_req_ext.c (krb5_mk_req_extended())
2267         * rd_rep.c (krb5_rd_rep())
2268         * sendauth.c (krb5_sendauth())
2269         * mk_priv.c (krb5_mk_priv())
2270         * mk_safe.c (krb5_mk_safe())
2271         * rd_priv.c (krb5_rd_priv())
2272         * rd_safe.c (krb5_rd_safe())
2273                 Added a krb5_auth_context argument and eliminated many of 
2274                 the other arguments because they are included in the
2275                 krb5_auth_context structure.
2276
2277         * send_tgs.c (krb5_send_tgs()) Eliminate call to krb5_mk_req_extended(),
2278                 which does far more than krb5_send_tgs() needs.
2279
2280 Tue Mar  7 19:57:34 1995  Mark Eichin  <eichin@cygnus.com>
2281
2282         * configure.in: take out ISODE_INCLUDE.
2283
2284 Tue Mar 7 13:20:06 1995 Keith Vetter (keithv@fusion.com)
2285
2286         * Makefile.in: changed library name on the pc.
2287         * parse.c: disabled for the PC error messages to stderr.
2288         * chk_trans.c: fixed signed/unsigned assignment.
2289
2290 Thu Mar 2 11:45:00 1995 Keith Vetter (keithv@fusion.com)
2291         
2292         * compat_recv.c, get_fcre.c, recvauth.c, sendauth.c: changed
2293            NEED_WINSOCK_H to NEED_SOCKETS.
2294
2295 Wed Mar 1 20:15:00 1995 Keith Vetter (keithv@fusion.com)
2296
2297         * compat_r.c, copy_pri.c, get_fcre.c, get_in_t.c, init_ctx.c, in_tkt_p.c
2298            in_tkt_s.c, preauth.c, princ_co.c, pr_to_sa.c, rd_req_d.c, recvauth.c
2299            sendauth.c, send_tgs.c, unparse.c: 16 vs 32 bit casts, removed some
2300            unused local variables, and pulled in winsock.h for network byte
2301            ordering.
2302
2303 Tue Feb 28 01:14:57 1995  John Gilmore  (gnu at toad.com)
2304
2305         * *.c:  Avoid <krb5/...> includes.
2306         * parse.c:  Exdent #ifndef to left margin for old compilers.
2307
2308 Wed Feb 22 17:14:31 1995 Keith Vetter (keithv@fusion.com)
2309
2310         * walk_rtr.c (krb5_walk_realm_tree): formal parameter wasn't declared.
2311         * send_tgs.c: const in wrong place in the prototype.
2312         * get_in_tkt.c, preauth.c, rd_cred.c, rd_priv.c, rd_req_dec.c, 
2313            rd_safe.c: needed a 32 bit abs() function.
2314         * parse.c: removed call to fprintf on error the windows version
2315         * send_auth.c: defined for windows the ECONNABORTED errno (will
2316            be removed when the socket layer is fully implemented).
2317
2318 Tue Feb 21 23:38:34 1995  Theodore Y. Ts'o  (tytso@dcl)
2319
2320         * mk_cred.c (krb5_mk_cred): Fix argument type to
2321                 krb5_free_cred_enc_part().
2322
2323 Mon Feb 13 20:25:20 1995  Theodore Y. Ts'o  (tytso@dcl)
2324
2325         * get_in_tkt.c (krb5_get_in_tkt): Fix memory leak --- the default
2326                 encryption types was not being freed.
2327
2328 Fri Feb 10 15:45:59 1995  Theodore Y. Ts'o  <tytso@dcl>
2329
2330         * rd_req.c (krb5_rd_req): Remove ISODE cruft.
2331
2332 Thu Feb  9 17:43:04 1995  Theodore Y. Ts'o  <tytso@dcl>
2333
2334         * gc_via_tgt.c (krb5_get_cred_via_tgt): Set up the keyblock's
2335                 etype field correctly (after copying the keyblock, so it
2336                 doesn't get overwritten!)
2337
2338 Mon Feb 06 17:19:04 1995 Chris Provenzano  (proven@mit.edu)
2339
2340         * get_in_tkt.c (krb5_get_in_tkt())
2341         * in_tkt_sky.c (krb5_get_in_tkt_with_skey())
2342         * in_tkt_pwd.c (krb5_get_in_tkt_with_password())
2343                 Removed krb5_keytype, changed krb5_enctype to krb5_enctype *,
2344                 changed krb5_preauthtype to krb5_preauthtype *.
2345
2346                 Changed the args to the key_proc arg of krb5_get_in_tkt()
2347                 to be the following (krb5_context, const krb5_keytype, 
2348                 krb5_data *, krb5_const_pointer, krb5_keyblock **)
2349
2350         * in_tkt_ktb.c (krb5_get_in_tkt_with_keytab()) Added this routine
2351                 to replace krb5_get_in_tkt_with_skey() in kinit.
2352
2353         * Makefile.in Added new source file in_tkt_ktb.c.
2354                 
2355 Fri Feb  3 16:41:19 1995  Mark Eichin  (eichin@cygnus.com)
2356
2357         * get_in_tkt.c (krb5_get_in_tkt): also check for the version
2358         number of the reply being whatever we had in the first byte of the
2359         request.
2360
2361 Fri Feb  3 08:07:55 1995  Theodore Y. Ts'o  (tytso@dcl)
2362
2363         * compat_recv.c (krb_v4_recvauth): Use explicit 32 bit types so
2364                 this will work on an Alpha.
2365
2366 Fri Feb  3 00:43:48 1995  Tom Yu  (tlyu@dragons-lair)
2367
2368         * get_in_tkt.c (krb5_get_in_tkt): fix typo
2369
2370 Thu Feb  2 20:51:55 1995  Mark Eichin  (eichin@cygnus.com)
2371
2372         * get_in_tkt.c (krb5_get_in_tkt): if krb5_is_as_rep fails, check
2373         if the packet might be a V4 error packet. Use modified V4 check so
2374         that it compiles under SCO.
2375
2376 Mon Jan 30 15:46:14 1995 Chris Provenzano (proven@mit.edu)
2377
2378         * int-proto.h Update prototypes for krb5_get_cred_via_tgt(), and
2379                 krb5_get_cred_via_2tgt().
2380
2381         * get_fcreds.c (krb5_get_for_creds()) 
2382         * gc_via_tgt.c (krb5_get_cred_via_tgt())
2383         * gc_2tgt.c (krb5_get_cred_via_2tgt())
2384                 Removed krb5_enctype argument. Pass NULL list of encryption
2385                 types to krb5_send_tgs to get default encryption types.
2386
2387         * gc_frm_kdc.c Removed krb5_enctype argument passed to 
2388                 krb5_get_cred_via_tgt()
2389
2390         * send_tgs.c (krb5_send_tgs()) Changed krb5_enctype arg to
2391                 krb5_enctype *, a NULL terminated array of encryption 
2392                 types. If argument is NULL then krb5_send_tgs() will 
2393                 use defaul list of encryption types.
2394
2395         * send_tgs.c (krb5_send_tgs()) To encrypt request ticket use
2396                 usecred->keyblock.etype instead of (and now defunct) 
2397                 krb5_enctype arg.
2398
2399         * init_ctx.c Added krb5_set_default_in_tkt_etypes() and
2400                 krb5_get_default_in_tkt_etypes().
2401         
2402         * rd_req.c, rd_req_decode.c Removed typedef for rdreq_key_proc
2403                 and use krb5_rd_req_decoded in its place.
2404
2405 Mon Jan 30 11:26:05 1995 Chris Provenzano (proven@mit.edu)
2406
2407         * get_fcreds.c Really needs #include<krb5/asn1.h> for definition
2408                 of krb5_is_krb_error()
2409
2410 Sat Jan 28 14:45:55 1995 Chris Provenzano (proven@mit.edu)
2411
2412         * in_tkt_sky.c (skey_keyproc()), rd_req_dec.c (krb5_rd_req_decoded())
2413                 use new API for krb5_kt_get_entry.
2414
2415 Fri Jan 27 15:45:45 1995 Chris Provenzano (proven@mit.edu)
2416
2417         * get_fcreds.c Removed #include<krb5/crc-32.h> and #include<krb5/asn1.h>
2418
2419 Wed Jan 25 16:54:40 1995  Chris Provenzano (proven@mit.edu)
2420
2421         * Removed all narrow types and references to wide.h and narrow.h
2422
2423 Fri Jan 13 15:23:47 1995  Chris Provenzano (proven@mit.edu)
2424
2425         * Added krb5_context to all krb5_routines
2426
2427 Mon Dec 19 21:55:44 1994  Theodore Y. Ts'o  (tytso@dcl)
2428
2429         * init_ctx.c: New file.  Initializes and frees the krb5_context
2430           structure.
2431
2432 Wed Dec  7 17:52:08 1994    <tytso@localhost>
2433
2434         * rd_req_dec.c (decrypt_authenticator): If the subkey doesn't
2435                 exist, don't try to set the subkey's etype.
2436
2437 Wed Nov 30 17:10:39 1994  Theodore Y. Ts'o  (tytso@dcl)
2438
2439         * bld_princ.c (krb5_build_principal_va): Set the principal's type
2440                 and magic number.
2441
2442         * Makefile.in: Build new test driver (t_walk_rtree) for
2443                 krb5_walk_realm_tree.
2444
2445         * walk_realm_tree.c (krb5_walk_realm_tree): Fix bug which occured
2446                 when the client or the server is a subdomain of the other;
2447                 walk_realm_tree would return the wrong answer, and suffer
2448                 from memory access errors.
2449
2450         * unparse.c (krb5_unparse_name_ext): Quote the '/' and '@'
2451                 characters properly.
2452
2453         * configure.in: Add appropriate help text for the --with-krb4
2454                 option.  Remove ISODE_DEFS call, since ISODE_INCLUDES now
2455                 defines ISODE automatically.
2456
2457 Mon Nov 21 15:30:07 1994  Theodore Y. Ts'o  (tytso@dcl)
2458
2459         * mk_req_ext.c (krb5_mk_req_extended): Sanitize how memory is
2460                 freed in both error and normal cases, to remove memory
2461                 leaks. 
2462
2463         * mk_req_ext.c (krb5_mk_req_extended): Use the encryption type
2464                 specified by the ticket to generate the authenticator.
2465
2466         * encode_kdc.c (krb5_encode_kdc_rep): Now requires that the
2467                 caller pass in the encryption block to be used for
2468                 encrpyting the ticket.  That way, this routine doesn't
2469                 need to create its own encryption block.
2470
2471         * encrypt_tk.c (krb5_encrypt_tkt_part): Now requires that the
2472                 caller pass in the encryption block to be used for
2473                 encrpyting the ticket.  That way, this routine doesn't
2474                 need to create its own encryption block.
2475
2476 Fri Nov 18 17:30:44 1994  Theodore Y. Ts'o  (tytso@dcl)
2477
2478         * mk_req_ext.c (krb5_mk_req_extended): Encrypt the authenticator
2479                 using the same encryption system used to encrypt the ticket.
2480
2481 Thu Nov 17 01:56:05 1994  Theodore Y. Ts'o  (tytso@dcl)
2482
2483         * gc_via_tgt.c (krb5_get_cred_via_tgt): 
2484         * gc_2tgt.c (krb5_get_cred_via_2tgt): Set the encryption type of
2485                 the session keyblock to be the type used to encrypt the
2486                 ticket. 
2487
2488 Fri Nov 11 01:20:22 1994  Theodore Y. Ts'o  (tytso@dcl)
2489
2490         * get_in_tkt.c (krb5_get_in_tkt): Set the encryption type of the
2491                 session keyblock to be the type used to encrypt the
2492                 ticket. 
2493
2494 Thu Nov 10 23:56:43 1994  Theodore Y. Ts'o  (tytso@dcl)
2495
2496         * rd_rep.c (krb5_rd_rep): Set the encryption type in
2497                 the subkey keyblock to be the encryption type used to
2498                 encrypt the rd_rep message.
2499
2500         * decrypt_tk.c (krb5_decrypt_tkt_part): Set the encryption type in
2501                 the session keyblock to be the encryption type used to
2502                 encrypt the ticket.
2503
2504         * rd_req_dec.c (decrypt_authenticator): Set the encryption type in
2505                 the subkey keyblock to be the encryption type used to
2506                 encrypt the authenticator. 
2507
2508 Tue Nov  8 17:09:48 1994  Theodore Y. Ts'o  (tytso@dcl)
2509
2510         * in_tkt_pwd.c (pwd_keyproc): Use the documented interface for
2511                 calling krb5_string_to_key().
2512
2513 Tue Oct 25 23:34:57 1994  Theodore Y. Ts'o  (tytso@dcl)
2514
2515         * srv_rcache.c (krb5_get_server_rcache): Added missing continue so
2516                 that we don't copy both the unprintable character as well
2517                 as the quoted version of it.
2518
2519 Mon Oct 24 15:50:19 1994  Theodore Y. Ts'o  (tytso@dcl)
2520
2521         * configure.in: If KRB4 is defined, define KRB5_KRB4_COMPAT for
2522                 compat_recv.c.
2523
2524 Thu Oct 13 17:26:28 1994  Theodore Y. Ts'o  (tytso@maytag)
2525
2526         * configure.in: Add ISODE_DEFS
2527
2528 Tue Oct  4 16:29:19 1994  Theodore Y. Ts'o  (tytso@dcl)
2529
2530         * in_tkt_sky.c (skey_keyproc):
2531         * in_tkt_pwd.c (pwd_keyproc): Add widen.h and narrow.h includes
2532                 around pwd_keyproc, so that the keyproc input arguments
2533                 are appropriately widened.
2534
2535 Fri Sep 30 21:58:15 1994  Theodore Y. Ts'o  (tytso@dcl)
2536
2537         * preauth.c (preauth_systems): Add placeholder for magic number
2538
2539 Thu Sep 29 15:31:10 1994  Theodore Y. Ts'o  (tytso@dcl)
2540
2541         * srv_rcache.c (krb5_get_server_rcache): cachename was not being
2542                 properly null-terminated.
2543
2544         * get_in_tkt.c (krb5_get_in_tkt): Return KRB5_IN_TKT_REALM_MISATCH
2545                 if the client and server realms don't match.  Return
2546                 KRB5_KDCREP_SKEW if the KDC reply has an unacceptible
2547                 clock skew (instead of KDCREP_MODIFIED.)
2548
2549         * gc_via_tgt.c (krb5_get_cred_via_tgt): Use a distinct error code
2550                 for KDC skew separate from the standard KDCREP_MODIFIED
2551
2552         * princ_comp.c (krb5_realm_compare): Added new function from
2553                 OpenVision.
2554
2555 Wed Sep 21 17:57:35 1994  Theodore Y. Ts'o  (tytso@dcl)
2556
2557         * rd_req_dec.c (krb5_rd_req_decoded): Added Changes from Cybersafe
2558                 to do transited realm path checking.
2559
2560         * chk_trans.c: Added donated module from CyberSafe.  It checks to
2561                 see if a transited path is a legal one between two realms.
2562
2563 Thu Sep 15 11:08:39 1994  Theodore Y. Ts'o  (tytso@dcl)
2564
2565         * rd_req_sim.c (krb5_rd_req_simple): Use krb5_rd_req instead of
2566                 krb5_rd_req_decoded, to eliminate some code duplication.
2567
2568 Sat Aug 20 01:43:43 1994  Theodore Y. Ts'o  (tytso at tsx-11)
2569
2570         * mk_req_ext.c (krb5_generate_authenticator): Fix pointer aliasing
2571         problem between newkey and authent->subkey.
2572
2573 Wed Aug 17 17:58:22 1994  Theodore Y. Ts'o  (tytso at tsx-11)
2574
2575         * encode_kdc.c (krb5_encode_kdc_rep): Pass in to
2576         encode_krb5_enc_kdc_rep_part the msg_type which should be used.
2577         Old versions of Kerberos always assume TGS_REP; this merely allows
2578         the right msg_type to be passed down to the encoding routines.
2579         For now, the encoding routines will ignore this value and do
2580         things the old way, for compatibility's sake.
2581
2582 Mon Aug  8 22:38:16 1994  Theodore Y. Ts'o  (tytso at tsx-11)
2583
2584         * preauth.c: Renamed preauthentication mechanism names to match
2585         what bcn and I agreed upon.
2586
2587 Tue Jun 28 19:35:07 1994  Tom Yu  (tlyu at dragons-lair)
2588
2589         * decode_kdc.c: folding in Harry's changes
2590         * rd_req.c: ditto
2591         * rd_req_sim.c: ditto
2592         * configure.in: adding ISODE_DEFS
2593