From 4f56a0a53d2195d4a1bb3e36675f6f1eb08e9634 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 4 Jan 2015 15:50:45 +0100 Subject: Windows: Add support for TrueCrypt 6.x since its format (v4) is identical to 7.x apart from the sector size field which we already handle correctly. --- src/Common/Volumes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Common/Volumes.c b/src/Common/Volumes.c index 7e001004..4acb9296 100644 --- a/src/Common/Volumes.c +++ b/src/Common/Volumes.c @@ -423,7 +423,7 @@ KeyReady: ; cryptoInfo->RequiredProgramVersion = GetHeaderField16 (header, TC_HEADER_OFFSET_REQUIRED_VERSION); if (truecryptMode) { - if (cryptoInfo->RequiredProgramVersion < 0x700 || cryptoInfo->RequiredProgramVersion > 0x71a) + if (cryptoInfo->RequiredProgramVersion < 0x600 || cryptoInfo->RequiredProgramVersion > 0x71a) { status = ERR_UNSUPPORTED_TRUECRYPT_FORMAT; goto err; -- cgit v1.2.3