Detect and use devmapper udev support if available (disable by --disable-udev).
[platform/upstream/cryptsetup.git] / ChangeLog
1 2010-04-12  Milan Broz  <mbroz@redhat.com>
2         * Fix package config to use proper package version.
3         * Avoid class C++ keyword in library header.
4         * Detect and use devmapper udev support if available (disable by --disable-udev).
5
6 2010-04-06  Milan Broz  <mbroz@redhat.com>
7         * Prefer some device paths in status display.
8         * Support device topology detectionfor data alignment.
9
10 2010-02-25  Milan Broz  <mbroz@redhat.com>
11         * Do not verify unlocking passphrase in luksAddKey command.
12         * Properly initialise crypto backend in header backup/restore commands.
13
14 2010-01-17  Milan Broz  <mbroz@redhat.com>
15         * If gcrypt compiled with capabilities, document workaround for cryptsetup (see lib/gcrypt.c).
16         * Version 1.1.0.
17
18 2010-01-10  Milan Broz  <mbroz@redhat.com>
19         * Fix initialisation of gcrypt duting luksFormat.
20         * Convert hash name to lower case in header (fix sha1 backward comatible header)
21         * Check for minimum required gcrypt version.
22
23 2009-12-30  Milan Broz  <mbroz@redhat.com>
24         * Fix key slot iteration count calculation (small -i value was the same as default).
25         * The slot and key digest iteration minimun is now 1000.
26         * The key digest iteration # is calculated from iteration time (approx 1/8 of that).
27         * Version 1.1.0-rc4.
28
29 2009-12-11  Milan Broz  <mbroz@redhat.com>
30         * Fix error handling during reading passhrase.
31
32 2009-12-01  Milan Broz  <mbroz@redhat.com>
33         * Allow changes of default compiled-in cipher parameters through configure.
34         * Switch default key size for LUKS to 256bits.
35         * Switch default plain mode to aes-cbc-essiv:sha256 (default is backward incompatible!).
36
37 2009-11-14  Milan Broz  <mbroz@redhat.com>
38         * Add CRYPT_ prefix to enum defined in libcryptsetup.h.
39         * Fix status call to fail when running as non-root user.
40         * Check in configure if selinux libraries are required in static version.
41         * Add temporary debug code to find processes locking internal device.
42         * Simplify build system, use autopoint and clean gettext processing.
43         * Use proper NLS macros and detection (so the message translation works again).
44         * Version 1.1.0-rc3.
45
46 2009-09-30  Milan Broz  <mbroz@redhat.com>
47         * Fix exported symbols and versions in libcryptsetup.
48         * Do not use internal lib functions in cryptsetup.
49         * Add crypt_log to library.
50         * Fix crypt_remove_device (remove, luksClose) implementation.
51         * Move dm backend initialisation to library calls.
52         * Move duplicate Command failed message to verbose level (error is printed always).
53         * Add some password and used algorithms notes to man page.
54         * Version 1.1.0-rc2.
55
56 2009-09-28  Milan Broz  <mbroz@redhat.com>
57         * Add luksHeaderBackup and luksHeaderRestore commands.
58         * Fail passphrase read if piped input no longer exists.
59         * Version 1.1.0-rc1.
60
61 2009-09-15  Milan Broz  <mbroz@redhat.com>
62         * Initialize crypto library before LUKS header load.
63         * Fix manpage to not require --size which expands to device size by default.
64
65 2009-09-10  Milan Broz  <mbroz@redhat.com>
66         * Clean up Makefiles and configure script.
67         * Version 1.1.0-test0.
68
69 2009-09-08  Milan Broz  <mbroz@redhat.com>
70         * Use dm-uuid for all crypt devices, contains device type and name now.
71         * Try to read first sector from device to properly check that device is ready.
72
73 2009-09-02  Milan Broz  <mbroz@redhat.com>
74         * Add luksSuspend (freeze device and wipe key) and luksResume (with provided passphrase).
75
76 2009-08-30  Milan Broz  <mbroz@redhat.com>
77         * Require device device-mapper to build and do not use backend wrapper for dm calls.
78         * Move memory locking and dm initialization to command layer.
79         * Increase priority of process if memory is locked.
80         * Add log macros and make logging modre consitent.
81         * Move command successful messages to verbose level.
82         * Introduce --debug parameter.
83         * Move device utils code and provide context parameter (for log).
84         * Keyfile now must be provided by path, only stdin file descriptor is used (api only).
85         * Do not call isatty() on closed keyfile descriptor.
86         * Run performance check for PBKDF2 from LUKS code, do not mix hash algoritms results.
87         * Add ability to provide pre-generated master key and UUID in LUKS header format.
88         * Add LUKS function to verify master key digest.
89         * Move key slot manuipulation function into LUKS specific code.
90         * Replace global options struct with separate parameters in helper functions.
91         * Add new libcryptsetup API (documented in libcryptsetup.h).
92         * Implement old API calls using new functions.
93         * Remove old API code helper functions.
94         * Add --master-key-file option for luksFormat and luksAddKey.
95
96 2009-08-17  Milan Broz  <mbroz@redhat.com>
97         * Fix PBKDF2 speed calculation for large passhrases.
98         * Allow using passphrase provided in options struct for LuksOpen.
99         * Allow restrict keys size in LuksOpen.
100
101 2009-07-30  Milan Broz  <mbroz@redhat.com>
102         * Fix errors when compiled with LUKS_DEBUG.
103         * Print error when getline fails.
104         * Remove po/cryptsetup-luks.pot, it's autogenerated.
105         * Return ENOENT for empty keyslots, EINVAL will be used later for other type of error.
106         * Switch PBKDF2 from internal SHA1 to libgcrypt, make hash algorithm not hardcoded to SHA1 here.
107         * Add required parameters for changing hash used in LUKS key setup scheme.
108         * Do not export simple XOR helper now used only inside AF functions.
109         * Completely remove internal SHA1 implementanion code, not needed anymore.
110         * Enable hash algorithm selection for LUKS through -h luksFormat option.
111
112 2009-07-28  Milan Broz  <mbroz@redhat.com>
113         * Pad luks header to 512 sector size.
114         * Rework read/write blockwise to not split operation to many pieces.
115         * Use posix_memalign if available.
116
117 2009-07-22  Milan Broz  <mbroz@redhat.com>
118         * Fix segfault if provided slot in luksKillslot is invalid.
119         * Remove unneeded timeout when remove of temporary device succeeded.
120
121 2009-07-22  Milan Broz  <mbroz@redhat.com>
122         * version 1.0.7
123
124 2009-07-16  Milan Broz  <mbroz@redhat.com>
125         * Allow removal of last slot in luksRemoveKey and luksKillSlot.
126
127 2009-07-11  Milan Broz  <mbroz@redhat.com>
128
129         * Add --disable-selinux option and fix static build if selinux is required.
130         * Reject unsupported --offset and --skip options for luksFormat and update man page.
131
132 2009-06-22  Milan Broz  <mbroz@redhat.com>
133
134         * Summary of changes in subversion for 1.0.7-rc1:
135         * Various man page fixes.
136         * Set UUID in device-mapper for LUKS devices.
137         * Retain readahead of underlying device.
138         * Display device name when asking for password.
139         * Check device size when loading LUKS header. Remove misleading error message later.
140         * Add error hint if dm-crypt mapping failed.
141         * Use better error messages if device doesn't exist or is already used by other mapping.
142         * Fix make distcheck.
143         * Check if all slots are full during luksAddKey.
144         * Fix segfault in set_error.
145         * Code cleanups, remove precompiled pot files, remove unnecessary files from po directory
146         * Fix uninitialized return value variable in setup.c.
147         * Code cleanups. (thanks to Ivan Stankovic)
148         * Fix wrong output for remaining key at key deletion.
149         * Allow deletion of key slot while other keys have the same key information.
150         * Add missing AM_PROG_CC_C_O to configure.in
151         * Remove duplicate sentence in man page.
152         * Wipe start of device (possible fs signature) before LUKS-formatting.
153         * Do not process configure.in in hidden directories.
154         * Return more descriptive error in case of IO or header format error.
155         * Use remapping to error target instead of calling udevsettle for temporary crypt device.
156         * Check device mapper communication and warn user if device-mapper support missing in kernel.
157         * Fix signal handler to properly close device.
158         * write_lseek_blockwise: declare innerCount outside the if block.
159         * add -Wall to the default CFLAGS. fix some signedness issues.
160         * Error handling improvement.
161         * Add non-exclusive override to interface definition.
162         * Refactor key slot selection into keyslot_from_option.
163
164 2007-05-01  Clemens Fruhwirth  <clemens@endorphin.org>
165
166         * lib/backends.c, man/cryptsetup.8: Apply patch from Ludwig Nussel
167         <ludwig.nussel@suse.de>, for old SuSE compat hashing.
168
169 2007-04-16  Clemens Fruhwirth  <clemens@endorphin.org>
170
171         * Summary of changes in subversion:
172         Fix segfault for key size > 32 bytes.
173         Kick ancient header version conversion. 
174         Fix http://bugs.debian.org/403075
175         No passwort retrying for I/O errors.
176         Fix hang on "-i 0".
177         Fix parenthesization error that prevented --tries from working
178         correctly.
179
180 2006-11-28  gettextize  <bug-gnu-gettext@gnu.org>
181
182         * m4/gettext.m4: Upgrade to gettext-0.15.
183         * m4/glibc2.m4: New file, from gettext-0.15.
184         * m4/intmax.m4: New file, from gettext-0.15.
185         * m4/inttypes-h.m4: New file, from gettext-0.15.
186         * m4/inttypes-pri.m4: Upgrade to gettext-0.15.
187         * m4/lib-link.m4: Upgrade to gettext-0.15.
188         * m4/lib-prefix.m4: Upgrade to gettext-0.15.
189         * m4/lock.m4: New file, from gettext-0.15.
190         * m4/longdouble.m4: New file, from gettext-0.15.
191         * m4/longlong.m4: New file, from gettext-0.15.
192         * m4/nls.m4: Upgrade to gettext-0.15.
193         * m4/po.m4: Upgrade to gettext-0.15.
194         * m4/printf-posix.m4: New file, from gettext-0.15.
195         * m4/signed.m4: New file, from gettext-0.15.
196         * m4/size_max.m4: New file, from gettext-0.15.
197         * m4/visibility.m4: New file, from gettext-0.15.
198         * m4/wchar_t.m4: New file, from gettext-0.15.
199         * m4/wint_t.m4: New file, from gettext-0.15.
200         * m4/xsize.m4: New file, from gettext-0.15.
201         * m4/Makefile.am: New file.
202         * configure.in (AC_OUTPUT): Add m4/Makefile.
203         (AM_GNU_GETTEXT_VERSION): Bump to 0.15.
204
205 2006-10-22  David Härdeman  <david@hardeman.nu>
206
207         * Allow hashing of keys passed through stdin.
208
209 2006-10-13  Clemens Fruhwirth  <clemens@endorphin.org>
210
211         * configure.in: 1.0.4 release
212
213 2006-10-13  Clemens Fruhwirth  <clemens@endorphin.org>
214
215         * man/cryptsetup.8: Document --tries switch; patch by Jonas
216         Meurer.
217
218 2006-10-13  Clemens Fruhwirth  <clemens@endorphin.org>
219
220         * lib/setup.c: Added terminal timeout rewrite as forwarded by
221         Jonas Meurer
222
223 2006-10-04  Clemens Fruhwirth  <clemens@endorphin.org>
224
225         * Merged patch from Marc Merlin <marc@merlins.org> to allow user
226         selection of key slot.
227
228 2006-09-26  gettextize  <bug-gnu-gettext@gnu.org>
229
230         * m4/codeset.m4: Upgrade to gettext-0.14.4.
231         * m4/gettext.m4: Upgrade to gettext-0.14.4.
232         * m4/glibc2.m4: New file, from gettext-0.14.4.
233         * m4/glibc21.m4: Upgrade to gettext-0.14.4.
234         * m4/iconv.m4: Upgrade to gettext-0.14.4.
235         * m4/intdiv0.m4: Upgrade to gettext-0.14.4.
236         * m4/intmax.m4: New file, from gettext-0.14.4.
237         * m4/inttypes.m4: Upgrade to gettext-0.14.4.
238         * m4/inttypes_h.m4: Upgrade to gettext-0.14.4.
239         * m4/inttypes-pri.m4: Upgrade to gettext-0.14.4.
240         * m4/isc-posix.m4: Upgrade to gettext-0.14.4.
241         * m4/lcmessage.m4: Upgrade to gettext-0.14.4.
242         * m4/lib-ld.m4: Upgrade to gettext-0.14.4.
243         * m4/lib-link.m4: Upgrade to gettext-0.14.4.
244         * m4/lib-prefix.m4: Upgrade to gettext-0.14.4.
245         * m4/longdouble.m4: New file, from gettext-0.14.4.
246         * m4/longlong.m4: New file, from gettext-0.14.4.
247         * m4/nls.m4: Upgrade to gettext-0.14.4.
248         * m4/po.m4: Upgrade to gettext-0.14.4.
249         * m4/printf-posix.m4: New file, from gettext-0.14.4.
250         * m4/progtest.m4: Upgrade to gettext-0.14.4.
251         * m4/signed.m4: New file, from gettext-0.14.4.
252         * m4/size_max.m4: New file, from gettext-0.14.4.
253         * m4/stdint_h.m4: Upgrade to gettext-0.14.4.
254         * m4/uintmax_t.m4: Upgrade to gettext-0.14.4.
255         * m4/ulonglong.m4: Upgrade to gettext-0.14.4.
256         * m4/wchar_t.m4: New file, from gettext-0.14.4.
257         * m4/wint_t.m4: New file, from gettext-0.14.4.
258         * m4/xsize.m4: New file, from gettext-0.14.4.
259         * Makefile.am (ACLOCAL_AMFLAGS): New variable.
260         * configure.in (AM_GNU_GETTEXT_VERSION): Bump to 0.14.4.
261
262 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
263
264         * configure.in: 1.0.4-rc2
265
266 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
267
268         * luks/Makefile.am: Add a few regression tests 
269
270 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
271
272         * lib/setup.c (get_key): Applied patch from David Härdeman
273         <david@2gen.com> for reading binary keys from stdin using
274         the "-" as key file.
275
276 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
277
278         * lib/setup.c (__crypt_luks_add_key): For checking options struct
279         (optionsCheck) filter out CRYPT_FLAG_VERIFY and
280         CRYPT_FLAG_VERIFY_IF_POSSIBLE, so that in no case password verification is done
281         for password retrieval.
282
283 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
284
285         * configure.in: Merge Patch from http://bugs.gentoo.org/show_bug.cgi?id=132126 for sepol
286
287 2006-07-23  Clemens Fruhwirth  <clemens@endorphin.org>
288
289         * Applied patches from David Härdeman <david@2gen.com> to fix 64
290         bit compiler warning issues.
291
292 2006-05-19  Clemens Fruhwirth  <clemens@endorphin.org>
293
294         * Applied patches from Jonas Meurer
295           - fix terminal status after timeout
296           - add remark for --tries to manpage
297           - allow more than 32 chars from standard input.
298           - exit status fix for cryptsetup status.
299
300 2006-05-06  Clemens Fruhwirth  <clemens@endorphin.org>
301
302         * src/cryptsetup.c (yesDialog): Fix getline problem for 64-bit archs. 
303
304 2006-04-05  Clemens Fruhwirth  <clemens@endorphin.org>
305
306         * configure.in: Release 1.0.3.
307
308         * Applied patch by Johannes Weißl for more meaningful exit codes
309         and password retries
310
311 2006-03-30  Clemens Fruhwirth  <clemens@endorphin.org>
312
313         * lib/setup.c (__crypt_create_device): (char *) -> (const char *)
314
315 2006-03-30  Clemens Fruhwirth  <clemens@endorphin.org>
316
317         * Apply alignPayload patch from Peter Palfrader <weasel@debian.org>
318
319 2006-03-15  Clemens Fruhwirth  <clemens@endorphin.org>
320
321         * configure.in: 1.0.3-rc3. Most unplease release ever. 
322         * lib/setup.c (__crypt_create_device): More verbose error message.
323
324 2006-02-26  Clemens Fruhwirth  <clemens@endorphin.org>
325
326         * lib/setup.c: Revert to 1.0.1 key reading.
327
328 2006-02-25  Clemens Fruhwirth  <clemens@endorphin.org>
329
330         * man/cryptsetup.8: merge patch from Jonas Meurer
331
332 2006-02-25  Clemens Fruhwirth  <clemens@endorphin.org>
333
334         * configure.in: 1.0.3-rc2
335
336 2006-02-25  Clemens Fruhwirth  <clemens@endorphin.org>
337
338         * lib/libdevmapper.c (dm_create_device): Remove dup check here.
339         * lib/setup.c (__crypt_luks_open): Adopt same dup check as regular
340         create command.
341
342 2006-02-22  Clemens Fruhwirth  <clemens@endorphin.org>
343
344         * configure.in: Spin 1.0.3-rc1
345
346 2006-02-22  Clemens Fruhwirth  <clemens@endorphin.org>
347
348         * src/cryptsetup.c (action_create): Change defaulting.
349         (action_luksFormat): Change defaulting.
350
351         * lib/setup.c (parse_into_name_and_mode): Revert that default
352         change. This is FORBIDDEN here, as it will change cryptsetup
353         entire default. This is BAD in a non-LUKS world.
354
355 2006-02-21  Clemens Fruhwirth  <clemens@endorphin.org>
356
357         * luks/keyencryption.c (setup_mapping): Add proper size restriction to mapping. 
358         (LUKS_endec_template): Add more verbose error message.
359
360 2006-02-21  Clemens Fruhwirth  <clemens@endorphin.org>
361
362         * lib/libdevmapper.c (dm_query_device): Incorporate patch from
363         Bastian Blank
364         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=344313
365
366 2006-02-21  Clemens Fruhwirth  <clemens@endorphin.org>
367
368         * src/cryptsetup.c: Rename show_error -> show_status.
369
370 2006-02-20  Clemens Fruhwirth  <clemens@endorphin.org>
371
372         * lib/libdevmapper.c (dm_create_device): Prevent existing mapping
373         from being removed when a mapping with the same name is added
374
375         * Add timeout patch from Jonas Meurer 
376
377         * src/cryptsetup.c: Remove conditional error printing to enable
378         printing the no-error msg (Command successful). Verify passphrase
379         for LUKS volumes.
380         (main): Add no-verify-passphrase
381
382         * lib/setup.c (parse_into_name_and_mode): Change default mode complition to essiv:sha256.
383
384 2006-01-04  Clemens Fruhwirth  <clemens@endorphin.org>
385
386         * src/cryptsetup.c (help): Merge patch from Gentoo: change gettext(..) to _(..).
387
388 2005-12-06  Clemens Fruhwirth  <clemens@endorphin.org>
389
390         * man/cryptsetup.8: Correct "seconds" to "microseconds" in the explaination for -i.
391
392 2005-11-09  Clemens Fruhwirth  <clemens@endorphin.org>
393
394         * src/cryptsetup.c (main): Add version string.
395
396 2005-11-08  Clemens Fruhwirth  <clemens@endorphin.org>
397
398         * lib/backends.c: compile fix. 
399
400 2005-09-11  Clemens Fruhwirth  <clemens@endorphin.org>
401
402         * lib/setup.c (get_key): Fixed another incompatibility from my
403         get_key rewrite with original cryptsetup.
404
405 2005-09-11  Clemens Fruhwirth  <clemens@endorphin.org>
406
407         * Merged changes from Florian Knauf's fk02 branch.
408
409 2005-09-08  Clemens Fruhwirth  <clemens@endorphin.org>
410
411         * lib/setup.c (get_key): Fixed another incompatiblity with
412         original cryptsetup.
413
414 2005-08-20  Clemens Fruhwirth  <clemens@endorphin.org>
415
416         * Checked in a patch from Michael Gebetsroither <gebi@sbox.tugraz.at>
417           to silent all confirmation dialogs.
418
419 2005-06-23  Clemens Fruhwirth  <clemens@endorphin.org>
420
421         * src/cryptsetup.c (help): print PACKAGE_STRING
422
423 2005-06-20  Clemens Fruhwirth  <clemens@endorphin.org>
424
425         * luks/keymanage.c (LUKS_set_key): Security check against header manipulation
426
427         * src/cryptsetup.c (action_luksDelKey): Safety check in luksDelKey
428
429         * luks/keymanage.c: Changed disk layout generation to align key material to 4k boundaries.
430         (LUKS_is_last_keyslot): Added LUKS_is_last_keyslot function.
431
432         * Applied patch from Bill Nottingham fixing a lot of prototypes.
433
434         * src/cryptsetup.c (action_luksOpen): Add support for -r flag.
435
436         * configure.in: Version bump 1.0.1
437
438 2005-06-16  Clemens Fruhwirth  <clemens@endorphin.org>
439
440         * lib/setup.c (__crypt_luks_open): Remove mem leaking of dmCipherSpec.
441         (get_key): Fix missing zero termination for read string. 
442
443 2005-06-12  Clemens Fruhwirth  <clemens@endorphin.org>
444
445         * luks/keyencryption.c (setup_mapping): Added CRYPT_FLAG_READONLY in case of O_RDONLY mode
446
447 2005-06-11  Clemens Fruhwirth  <clemens@endorphin.org>
448
449         * configure.in: Version bump 1.0.1-pre
450
451 2005-06-09  Clemens Fruhwirth  <clemens@endorphin.org>
452
453         * lib/utils.c: Added write_llseek_blocksize method to support sector wiping on sector_size != 512 
454         media
455
456 2005-05-23  Clemens Fruhwirth  <clemens@endorphin.org>
457
458         * lib/setup.c (crypt_luksDelKey): Added missing return statement
459         (setup_leave): Added missing return statement
460
461         * luks/keyencryption.c (clear_mapping): Added missing return statement
462
463 2005-05-19  Clemens Fruhwirth  <clemens@endorphin.org>
464
465         * lib/utils.c (write_blockwise, read_blockwise): Changed to soft bsize instead of SECTOR_SIZE
466
467         * luks/keymanage.c (wipe): Changed open mode to O_DIRECT | O_SYNC, and changed write 
468         to use the blockwise write helper
469
470 2005-04-21  Clemens Fruhwirth  <clemens@endorphin.org>
471
472         * man/cryptsetup.8: Corrected an error, thanks to Dick Middleton.
473
474 2005-04-09  Clemens Fruhwirth  <clemens@endorphin.org>
475
476         * luks/sha/hmac.c: Add 64 bit bug fix courtesy to 
477         Oliver Paukstadt <pstadt@sourcentral.org>.
478
479         * luks/pbkdf.c, luks/keyencryption.c, luks/keymanage.c, luks/af.c: Added a license 
480         disclaimer and remove option for "any future GPL versions".
481
482 2005-03-25  Clemens Fruhwirth  <clemens@endorphin.org>
483
484         * configure.in: man page Makefile. Version bump 1.0.
485
486         * man/cryptsetup.8: finalize man page and move to section 8.
487
488         * src/cryptsetup.c (action_luksFormat): Add "are you sure" for interactive sessions.
489
490         * lib/setup.c (crypt_luksDump), src/cryptsetup.c: add LUKS dump command
491
492 2005-03-24  Clemens Fruhwirth  <clemens@endorphin.org>
493
494         * src/cryptsetup.c, luks/Makefile.am (test), lib/setup.c (setup_enter): 
495         rename luksInit to luksFormat
496
497 2005-03-12  Clemens Fruhwirth  <clemens@endorphin.org>
498
499         * man/cryptsetup.1: Add man page.
500
501         * lib/setup.c: Remove unneccessary LUKS_write_phdr call, so the
502         phdr is written after passphrase reading, so the user can change
503         his mind, and not have a partial written LUKS header on it's disk.
504
505 2005-02-09  Clemens Fruhwirth  <clemens@endorphin.org>
506
507         * luks/keymanage.c (LUKS_write_phdr): converted argument phdr to
508         pointer, and make a copy of phdr for conversion
509
510         * configure.in: Version dump.
511
512         * luks/keyencryption.c: Convert to read|write_blockwise.
513
514         * luks/keymanage.c: Convert to read|write_blockwise.
515
516         * lib/utils.c: Add read|write_blockwise functions, to use in
517         O_DIRECT file accesses. 
518
519 2004-03-11 Thursday 15:52   Christophe Saout <christophe@saout.de>
520
521         * lib/blockdev.h: BLKGETSIZE64 really uses size_t as third
522           argument, the rest is wrong.
523
524 2004-03-10 Wednesday 17:50   Christophe Saout <christophe@saout.de>
525
526         * lib/: libcryptsetup.h, libdevmapper.c: Small fixes.
527
528 2004-03-09 Tuesday 21:41   Christophe Saout <christophe@saout.de>
529
530         * lib/internal.h, lib/libcryptsetup.h, lib/libdevmapper.c,
531           lib/setup.c, po/de.po, src/cryptsetup.c: Added internal flags to
532           keep track of malloc'ed return values in struct crypt_options and
533           add a function to free the memory. Also add a readonly flag to
534           libcryptsetup.
535
536 2004-03-09 Tuesday 16:03   Christophe Saout <christophe@saout.de>
537
538         * ChangeLog, configure.in, setup-gettext, lib/Makefile.am,
539           lib/backends.c, lib/blockdev.h, lib/gcrypt.c, lib/internal.h,
540           lib/libcryptsetup.h, lib/libdevmapper.c, lib/setup.c,
541           lib/utils.c, po/de.po, src/Makefile.am, src/cryptsetup.c: More
542           reorganization work.
543
544 2004-03-08 Monday 01:38   Christophe Saout <christophe@saout.de>
545
546         * ChangeLog, Makefile.am, acinclude.m4, configure.in,
547           lib/Makefile.am, lib/backends.c, lib/blockdev.h, lib/gcrypt.c,
548           lib/libdevmapper.c, lib/setup.c, lib/utils.c, po/de.po,
549           src/Makefile.am: BLKGETSIZE64 fixes and started modularity
550           enhancements
551
552 2004-03-04 Thursday 21:06   Christophe Saout <christophe@saout.de>
553
554         * Makefile.am, po/de.po, src/cryptsetup.c, src/cryptsetup.h: First
555           backward compatible working version.
556
557 2004-03-04 Thursday 00:42   Christophe Saout <christophe@saout.de>
558
559         * NEWS, AUTHORS, ChangeLog, Makefile.am, README, autogen.sh,
560           configure.in, setup-gettext, po/ChangeLog, po/LINGUAS,
561           po/POTFILES.in, po/de.po, src/cryptsetup.c, src/cryptsetup.h,
562           src/Makefile.am (utags: initial): Initial checkin.
563
564 2004-03-04 Thursday 00:42   Christophe Saout <christophe@saout.de>
565
566         * NEWS, AUTHORS, ChangeLog, Makefile.am, README, autogen.sh,
567           configure.in, setup-gettext, po/ChangeLog, po/LINGUAS,
568           po/POTFILES.in, po/de.po, src/cryptsetup.c, src/cryptsetup.h,
569           src/Makefile.am: Initial revision