VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2013-11-05 08:22:01 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:18:53 +0100
commit235f0b85ea4cf54a20caa3eab1aa317bd896bb77 (patch)
treee079136cc99025ddc84b54c49485a8847c80e915
parent52c6cad74515659b082df030ec5962dcc3b9e9d8 (diff)
downloadVeraCrypt-235f0b85ea4cf54a20caa3eab1aa317bd896bb77.tar.gz
VeraCrypt-235f0b85ea4cf54a20caa3eab1aa317bd896bb77.zip
Set correctly the minimum required version in volumes header (this value must always follow the current program version). This solves also the hidden volume issue.
-rw-r--r--src/Common/Volumes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/Volumes.h b/src/Common/Volumes.h
index 0b5116fd..8f1da28d 100644
--- a/src/Common/Volumes.h
+++ b/src/Common/Volumes.h
@@ -21,11 +21,11 @@ extern "C" {
// Version number written to volume header during format;
// specifies the minimum program version required to mount the volume
-#define TC_VOLUME_MIN_REQUIRED_PROGRAM_VERSION 0x0100
+#define TC_VOLUME_MIN_REQUIRED_PROGRAM_VERSION 0x010b
// Version number written (encrypted) to the key data area of an encrypted system partition/drive;
// specifies the minimum program version required to decrypt the system partition/drive
-#define TC_SYSENC_KEYSCOPE_MIN_REQ_PROG_VERSION 0x0100
+#define TC_SYSENC_KEYSCOPE_MIN_REQ_PROG_VERSION 0x010b
// Current volume format version (created by TrueCrypt 6.0+)
#define TC_VOLUME_FORMAT_VERSION 2