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