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