diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-15 00:37:26 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-15 01:09:20 +0200 |
commit | 24560eae1d434e57cde1aa5c7ca2d3fa0d7c42a3 (patch) | |
tree | 95294e19bbd61d330e57d35b844c1321303c8b38 /src/ExpandVolume/ExpandVolume.c | |
parent | 67031da928735e1d3b6bfca8d393a07d98e478dd (diff) | |
download | VeraCrypt-24560eae1d434e57cde1aa5c7ca2d3fa0d7c42a3.tar.gz VeraCrypt-24560eae1d434e57cde1aa5c7ca2d3fa0d7c42a3.zip |
Windows: fill unused/reserved header areas with the result of encryption of random data instead of the encryption of zeros for better entropy of resulting random data.
Diffstat (limited to 'src/ExpandVolume/ExpandVolume.c')
-rw-r--r-- | src/ExpandVolume/ExpandVolume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ExpandVolume/ExpandVolume.c b/src/ExpandVolume/ExpandVolume.c index 82c4207e..2235af1a 100644 --- a/src/ExpandVolume/ExpandVolume.c +++ b/src/ExpandVolume/ExpandVolume.c @@ -837,7 +837,7 @@ static int ExpandVolume (HWND hwndDlg, wchar_t *lpszVolume, Password *pVolumePas PCRYPTO_INFO dummyInfo = NULL; LARGE_INTEGER hiddenOffset; - nStatus = WriteRandomDataToReservedHeaderAreas (hwndDlg, dev, cryptoInfo, newDataAreaSize, !backupHeader, backupHeader); + nStatus = WriteRandomDataToReservedHeaderAreas (hwndDlg, dev, cryptoInfo, newDataAreaSize, !backupHeader, backupHeader, FALSE); if (nStatus != ERR_SUCCESS) goto error; |