1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
2001-03-05 Ken Raeburn <raeburn@mit.edu>
* checksum.c, derive.c, dk.h, dk_decrypt.c, dk_encrypt.c,
stringtokey.c: Use const instead of krb5_const.
2001-01-23 Ken Raeburn <raeburn@mit.edu>
* stringtokey.c (kerberos): Now const.
(krb5_dk_string_to_key): Cast it to non-const.
2000-06-03 Tom Yu <tlyu@mit.edu>
* dk_encrypt.c (krb5_dk_encrypt, krb5_marc_dk_encrypt): Chain
ivecs.
* dk_decrypt.c (krb5_dk_decrypt, krb5_marc_dk_decrypt): Chain
ivecs.
2000-04-28 Ken Raeburn <raeburn@mit.edu>
* derive.c (krb5_derive_key): If memory allocation fails, release
other allocated blocks before returning, instead of trying to
release them after returning.
2000-01-21 Ken Raeburn <raeburn@mit.edu>
* checksum.c (krb5_dk_make_checksum): enc_providers are now
const. Modify if(a=b) assignment/test constructs to silence gcc
warnings.
* dk_decrypt.c (krb5_dk_decrypt, krb5_marc_dk_decrypt): Ditto.
* dk_encrypt.c (krb5_dk_encrypt, krb5_marc_dk_encrypt): Ditto.
* stringtokey.c (krb5_dk_string_to_key): Ditto. Include dk.h.
1999-10-26 Wilfredo Sanchez <tritan@mit.edu>
* Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
LOCAL_INCLUDES such that one can override CFLAGS from the command
line without losing CPP search patchs and defines. Some associated
Makefile cleanup.
1999-06-28 Tom Yu <tlyu@mit.edu>
* dk_encrypt.c (krb5_marc_dk_encrypt): Call
krb5_marc_dk_encrypt_length() instead of krb5_dk_encrypt_length()
to prevent blocksize errors.
Mon May 10 15:16:34 1999 Danilo Almeida <dalmeida@mit.edu>
* Makefile.in: Do win32 build in subdir.
Tue Jan 5 00:09:13 1999 Tom Yu <tlyu@mit.edu>
* dk.h: Add prototypes for krb5_marc_dk_*.
* dk_encrypt.c (krb5_marc_dk_encrypt): Add compat for 32-bit
length coded ciphertext.
* dk_decrypt.c (krb5_marc_dk_decrypt): Add compat for 32-bit
length coded ciphertext.
* checksum.c: Add compat for 32-bit length included checksum.
Note that nothing uses this at the moment, and probably
shouldn't.
1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in: Set the myfulldir and mydir variables (which are
relative to buildtop and thisconfigdir, respectively.)
|