diff --git a/configure.ac b/configure.ac index 3a9c99bc..186225f5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.67]) -AC_INIT([cryptsetup],[1.7.0-git]) +AC_INIT([cryptsetup],[1.6.4]) dnl library version from ..[-] LIBCRYPTSETUP_VERSION=$(echo $PACKAGE_VERSION | cut -f1 -d-) diff --git a/docs/v1.6.4-ReleaseNotes b/docs/v1.6.4-ReleaseNotes index 51c28019..ebc71cb6 100644 --- a/docs/v1.6.4-ReleaseNotes +++ b/docs/v1.6.4-ReleaseNotes @@ -37,6 +37,9 @@ Changes since version 1.6.3 the need to reencrypt the whole data area. (Reencryption of LUKS header only without master key change.) +* By default verify new passphrase in luksChangeKey and luksAddKey + commands (if input is from terminal). + * Fix memory leak in Nettle crypto backend. * Support --tries option even for TCRYPT devices in cryptsetup. diff --git a/lib/libcryptsetup.h b/lib/libcryptsetup.h index e008907f..d0f51350 100644 --- a/lib/libcryptsetup.h +++ b/lib/libcryptsetup.h @@ -4,7 +4,7 @@ * Copyright (C) 2004, Christophe Saout * Copyright (C) 2004-2007, Clemens Fruhwirth * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2009-2012, Milan Broz + * Copyright (C) 2009-2014, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/lib/setup.c b/lib/setup.c index a0ac57fd..9d63280f 100644 --- a/lib/setup.c +++ b/lib/setup.c @@ -4,7 +4,7 @@ * Copyright (C) 2004, Christophe Saout * Copyright (C) 2004-2007, Clemens Fruhwirth * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2009-2013, Milan Broz + * Copyright (C) 2009-2014, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/lib/tcrypt/tcrypt.c b/lib/tcrypt/tcrypt.c index 3c7e75b2..e4be4cf7 100644 --- a/lib/tcrypt/tcrypt.c +++ b/lib/tcrypt/tcrypt.c @@ -2,7 +2,7 @@ * TCRYPT (TrueCrypt-compatible) volume handling * * Copyright (C) 2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2012-2013, Milan Broz + * Copyright (C) 2012-2014, Milan Broz * * This file is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/lib/tcrypt/tcrypt.h b/lib/tcrypt/tcrypt.h index 960d1d4d..6328b58b 100644 --- a/lib/tcrypt/tcrypt.h +++ b/lib/tcrypt/tcrypt.h @@ -2,7 +2,7 @@ * TCRYPT (TrueCrypt-compatible) header defitinion * * Copyright (C) 2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2012-2013, Milan Broz + * Copyright (C) 2012-2014, Milan Broz * * This file is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/man/cryptsetup-reencrypt.8 b/man/cryptsetup-reencrypt.8 index d7e26d3a..76136ed5 100644 --- a/man/cryptsetup-reencrypt.8 +++ b/man/cryptsetup-reencrypt.8 @@ -209,7 +209,7 @@ Please attach the output of the failed command with the .SH AUTHORS Cryptsetup-reencrypt was written by Milan Broz . .SH COPYRIGHT -Copyright \(co 2012-2013 Milan Broz +Copyright \(co 2012-2014 Milan Broz .br Copyright \(co 2012-2013 Red Hat, Inc. diff --git a/man/cryptsetup.8 b/man/cryptsetup.8 index 34869301..ea529a29 100644 --- a/man/cryptsetup.8 +++ b/man/cryptsetup.8 @@ -1018,9 +1018,9 @@ Copyright \(co 2004-2006 Clemens Fruhwirth .br Copyright \(co 2009-2012 Red Hat, Inc. .br -Copyright \(co 2009-2013 Milan Broz +Copyright \(co 2009-2014 Milan Broz .br -Copyright \(co 2012-2013 Arno Wagner +Copyright \(co 2012-2014 Arno Wagner This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. diff --git a/src/cryptsetup.c b/src/cryptsetup.c index c97049de..1fa5fcec 100644 --- a/src/cryptsetup.c +++ b/src/cryptsetup.c @@ -4,7 +4,7 @@ * Copyright (C) 2004, Christophe Saout * Copyright (C) 2004-2007, Clemens Fruhwirth * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2009-2013, Milan Broz + * Copyright (C) 2009-2014, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/src/cryptsetup.h b/src/cryptsetup.h index 1d16a3d0..05773b6e 100644 --- a/src/cryptsetup.h +++ b/src/cryptsetup.h @@ -4,7 +4,7 @@ * Copyright (C) 2004, Christophe Saout * Copyright (C) 2004-2007, Clemens Fruhwirth * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2009-2013, Milan Broz + * Copyright (C) 2009-2014, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/src/cryptsetup_reencrypt.c b/src/cryptsetup_reencrypt.c index 588925db..f4f48ea5 100644 --- a/src/cryptsetup_reencrypt.c +++ b/src/cryptsetup_reencrypt.c @@ -2,7 +2,7 @@ * cryptsetup-reencrypt - crypt utility for offline re-encryption * * Copyright (C) 2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2012-2013, Milan Broz All rights reserved. + * Copyright (C) 2012-2014, Milan Broz All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/src/utils_password.c b/src/utils_password.c index 7b680da6..541806c7 100644 --- a/src/utils_password.c +++ b/src/utils_password.c @@ -2,7 +2,7 @@ * Password quality check wrapper * * Copyright (C) 2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2012-2013, Milan Broz + * Copyright (C) 2012-2014, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/src/utils_tools.c b/src/utils_tools.c index 15250b1c..75ec48f6 100644 --- a/src/utils_tools.c +++ b/src/utils_tools.c @@ -4,7 +4,7 @@ * Copyright (C) 2004, Christophe Saout * Copyright (C) 2004-2007, Clemens Fruhwirth * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved. - * Copyright (C) 2009-2013, Milan Broz + * Copyright (C) 2009-2014, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License