VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2018-12-03Windows: Update libzip to version 1.5.1Mounir IDRASSI3-2/+13
2018-12-03Windows: remove unused variable.Mounir IDRASSI1-1/+1
2018-12-03Windows: delete existing uninstall shortcut when performing upgrade/reinstallMounir IDRASSI1-0/+3
2018-12-03MBR Bootloader: dynamically determine boot loader memory segment instead of ↵Mounir IDRASSI1-15/+16
hardcoded values (proposed by neos6464 at https://sourceforge.net/p/veracrypt/tickets/240/)
2018-12-02Do not create uninstall shortcut in startmenu (#381)csware1-18/+0
Creating such a start menu entry is a leftover of the ancient Win 3.x time where there was no central control panel for removing programs. Also see the Windows guidelines, where creating an uninstall shortcut is discouraged: https://msdn.microsoft.com/en-us/library/ms954377.aspx Signed-off-by: Sven Strickroth <email@cs-ware.de>
2018-10-10Increment version to 1.23-Hotfix-2Mounir IDRASSI14-33/+33
2018-10-10Windows Driver: fix regression that was causing BSOD.Mounir IDRASSI1-1/+1
2018-10-10Windows Driver: replace system functions ↵Mounir IDRASSI1-9/+41
RtlUpcaseUnicodeChar/RtlUnalignedStringCchLengthW by our own code for better clarity
2018-10-10Windows: zero TC_IOCTL_GET_SYSTEM_DRIVE_CONFIG input/output parameter as it ↵Mounir IDRASSI1-0/+2
is done for other IOCTLs
2018-09-21Increment version to 1.23-Hotfix-1Mounir IDRASSI17-33/+33
2018-09-21Windows: don't use quick format by default when creating file containers ↵Mounir IDRASSI1-1/+8
using command line and add a switch to enable quick format explicitly in command line
2018-09-21Windows: add /nosizecheck switch to VeraCrypt Format that allows disabling ↵Mounir IDRASSI1-1/+8
check on file container size against available free space on target disk. This enables to workaround a bug in Microsoft Distributed File System (DFS) that report wrong free disk space (https://support.microsoft.com/en-us/help/177127/incorrect-disk-free-space-information-for-a-dfs-client-share)
2018-09-21Windows driver: add extra check for data read in TC_IOCTL_OPEN_TEST handlingMounir IDRASSI1-1/+31
2018-09-21Windows: fix low severity vulnerability in driver that allowed reading 3 ↵Mounir IDRASSI1-49/+82
bytes of kernel stack memory (with a rare possibility of 25 additional bytes). Reported by Tim Harrison.
2018-09-12Set 1.23 release date to September 12th 2018Mounir IDRASSI1-1/+1
2018-09-10Set 1.23 release date to September 10th 2018Mounir IDRASSI1-2/+2
2018-09-09Increment version to 1.23Mounir IDRASSI9-14/+14
2018-09-03Increment version to 1.23-BETA8 and update release notes.Mounir IDRASSI12-30/+30
2018-09-03Windows: fix regression causing VeraCrypt UI to always be displayed upon logonMounir IDRASSI1-1/+1
2018-09-03Windows: handle case of inconsistencies in EFI system partition content ↵Mounir IDRASSI1-5/+32
during system encryption wizard caused by older VeraCrypt system encryption not properly uninstalled (e.g. reinstall Windows without decryption first).
2018-09-03Windows: fix regression when language selected in the setup during fresh ↵Mounir IDRASSI4-8/+21
install and that caused VeraCrypt background task to be disabled.
2018-09-03Windows: Don't include DcsBml.efi file in resources if custom configuration ↵Mounir IDRASSI1-0/+4
not enabled
2018-09-03Increment version to 1.23-BETA7 and update release notes.Mounir IDRASSI17-32/+32
2018-09-03Windows: Add EFI bootloader files that are signed by Microsoft and remove ↵Mounir IDRASSI163-119/+1
files related to loading SecureBoot custom keys.
2018-09-03Windows: add define to support case of using EFI bootloader signed by ↵Mounir IDRASSI1-3/+24
Microsoft (no check on custom keys in BIOS + removal of DcsBml EFI driver since it can not be signed).
2018-09-01Linux/FreeBSD: Add 32-bit build configuration targetting legacy CPUs that ↵Mounir IDRASSI3-0/+79
don't support SSE2 instructions.
2018-09-01Windows: extended Windows defragmenter workaround to Windows 8.1Mounir IDRASSI2-7/+7
2018-09-01Windows: handle case of some disk drivers not supporting ↵Mounir IDRASSI4-11/+137
IOCTL_DISK_GET_DRIVE_GEOMETRY_EX IOCTL.
2018-08-28Windows: Fix buttons at the bottom not shown when user sets a large system ↵Mounir IDRASSI3-2/+18
font under Window 7
2018-08-24Update EFI bootloader for 1.23-BETA6Mounir IDRASSI6-0/+0
2018-08-24Increment version to 1.23-BETA6Mounir IDRASSI17-33/+33
2018-08-24Windows: implement a driver configuration option to explicitly allow ↵Mounir IDRASSI7-11/+41
defragmenting non-système disques by Windows built-in defragmenter tool.
2018-08-24Windows: fix language selected in the installer not used by "Create Volume" ↵Mounir IDRASSI3-2/+11
wizard until reboot or exiting VeraCrypt main process.
2018-08-24Windows: Add check on size of file container to ensure it's smaller than ↵Mounir IDRASSI3-4/+44
available free space on disk when this is required.
2018-08-18Windows: Update signed driver files for 1.22-BETA5Mounir IDRASSI5-1/+1
2018-08-18Increment version to 1.23-BETA5 and update release notesMounir IDRASSI12-32/+32
2018-08-18Windows: Implement workaround on Windows 10 to make VeraCrypt encrypted ↵Mounir IDRASSI3-5/+32
disks visible to Windows defragmenter
2018-08-16Increment version to 1.23-BETA4 and update release notes.Mounir IDRASSI11-29/+29
2018-08-16Windows: Fix regression that caused the system encryption wizard to crash ↵Mounir IDRASSI2-5/+10
when displaying password field.
2018-08-15Windows: Add various checks and replace STL code after Coverity reportMounir IDRASSI3-24/+18
2018-08-15WIndows driver: add check for failed memory allocationMounir IDRASSI1-8/+11
2018-08-13Windows: code enhancements for language selection mechanism in the installer.Mounir IDRASSI3-263/+126
2018-08-12Added line breaks between copyright holders (#318)Marius Kjærstad1-11/+11
2018-08-12Windows: update EFI SecureBoot PowerShell script and its associated ↵Mounir IDRASSI141-18/+94
certificates to the latest version from VeraCrypt-DCS repository.
2018-08-12Windows: Update EFI bootloader files for 1.23-BETA3 releaseMounir IDRASSI6-0/+0
2018-08-12Increment version to 1.23-BETA3 and update release notes.Mounir IDRASSI11-32/+32
2018-08-12Windows: add language selection dialog to the portable installerMounir IDRASSI1-0/+41
2018-08-12Windows Installer: implement language selection mechanism at the start of ↵Mounir IDRASSI8-6/+430
the installer to make easier for international users.
2018-08-10Linux: Remove limitation of hidden volume protection on disk with sector ↵Mounir IDRASSI1-11/+0
size larger than 512 bytes.
2018-08-10Linux/MacOSX/FreeBSD: Implement benchmarking for Hash and PKCS-5 PRF algorithms.Mounir IDRASSI5-122/+725