VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-07-19Windows: Increment version to 1.22-BETA0Mounir IDRASSI6-13/+13
2017-07-19Windows Driver: remove dependency to wcsstr by using simple memcmp comparisonMounir IDRASSI1-1/+1
2017-07-16RPI, armv7 targetkavsrf1-0/+3
2017-07-10FreeBSD: make official FreeBSD build script executableVeraCrypt_1.21Mounir IDRASSI1-0/+0
2017-07-10FreeBSD: enable wxWidgets static build by default in official build scriptMounir IDRASSI1-4/+4
2017-07-10Update Readme to mention FreeBSD support and remove reference to OpenSolarisMounir IDRASSI1-38/+40
2017-07-10Add support for building under FreeBSD 11Mounir IDRASSI6-11/+1242
2017-07-09Windows: Update EFI bootloader files from VeraCrypt-DCS 1.21 after Camellia ↵Mounir IDRASSI2-0/+0
64bit assembly changes
2017-07-09Change 1.21 release date to July 9th 2017Mounir IDRASSI1-1/+1
2017-07-09Windows: when listing connected devices, consider that a partition exists if ↵Mounir IDRASSI1-2/+3
CreateFile returns ERROR_ACCESS_DENIED
2017-07-09Windows: generate pdb files for binaries in order to help investigate ↵Mounir IDRASSI5-22/+14
crashes in the future.
2017-07-09Windows: install crash handler in case of system favorites service in order ↵Mounir IDRASSI1-0/+18
to be able to clear Pre-Boot password from cache before the service is terminate if a crash happens.
2017-07-09Windows: correctly initialize global critical sections in case if system ↵Mounir IDRASSI3-6/+21
favorites service.
2017-07-09Windows: Update signed driver files for 1.21 release (1.21.5)Mounir IDRASSI2-0/+0
2017-07-09Increment version to 1.21.5Mounir IDRASSI8-13/+13
2017-07-09Remove unnecessary code from Camellia assembly implementation that checks ↵Mounir IDRASSI2-71/+10
for key size since we always use it with 256-bit keys.
2017-07-09Windows: preserve volatile registers XMM6-XMM15 in 64-bit assembly of Camellia.Mounir IDRASSI1-512/+51
2017-07-07Windows: Add PDF documents about DCS configuration for EFI system ↵Mounir IDRASSI3-0/+6
encryption: TPM support, full disk encryption and hidden OS. Include this in Windows installer.
2017-07-07Windows: display prompt to upgrade Rescue Disk when installing 1.21 version.Mounir IDRASSI1-1/+1
2017-07-07Windows: Don't remove last digit of version string if it is zero. This is a ↵Mounir IDRASSI1-3/+0
legacy code that applied to previous versioning scheme.
2017-07-07Change 1.21 release date to July 7th 2017Mounir IDRASSI1-1/+1
2017-07-07Windows: in case of system favorite mounting, update list of host devices ↵Mounir IDRASSI1-0/+3
before each retry to mount disconnected favorites.
2017-07-07Windows: fix regression affecting automatic mount of favorites and system ↵Mounir IDRASSI1-1/+8
favorites at logon
2017-07-07Windows: Update EFI bootloader files from VeraCrypt-DCS 1.21Mounir IDRASSI4-0/+0
2017-07-05Windows: Update signed driver files for 1.21 release (1.21.4)Mounir IDRASSI2-0/+0
2017-07-05Increment version to 1.21.4Mounir IDRASSI8-13/+13
2017-07-05Windows Driver: correctly get KeRestoreExtendedProcessorState function pointer.Mounir IDRASSI1-4/+5
2017-07-04Increment version to 1.21.3Mounir IDRASSI7-12/+12
2017-07-04Windows: correctly handle SEH exceptions during self-tests in order to ↵Mounir IDRASSI6-54/+91
disable CPU extended features in such case.
2017-07-04Don't check for SSSE3 to use 64-bit SHA-512 assembly code since it uses only ↵Mounir IDRASSI1-0/+4
SSE2 instructions.
2017-07-04Windows Driver: correctly save and restore extended processor state when ↵Mounir IDRASSI8-39/+201
performing AVX operations on Windows 7 and later. Enhance readability of code handling save/restore of floating point state.
2017-07-04Windows: use stack instead of MMX register to save registers in 64-bit ↵Mounir IDRASSI1-14/+19
assembly implementation of SHA-512 in order to avoid issues with the driver.
2017-07-03Windows: workaround for some cases where the system return ↵Mounir IDRASSI2-9/+36
ERROR_INVALID_PARAMETER when we try to write EFI bootloader files into ESP partition.
2017-07-03Change 1.21 release date to July 3rd 2017Mounir IDRASSI1-1/+1
2017-07-02Windows: fix documentation and UI messages about the PIM constraints and ↵Mounir IDRASSI4-10/+23
calculation formula when EFI system encryption is using SHA-512 or Whirlpool. For historical reasons, if SHA-512 or Whirlpool is selected for EFI system encryption, then iterations = 15000 + (PIM x 1000) and not iterations = PIM x 2048 like the other algorithms.
2017-07-02Windows: when mounting multiple favorites, use PIM of previous favorite ↵Mounir IDRASSI6-23/+28
alongside its password if option "Include PIM when caching password" is selected alongside option "Temporarily cache password during Mount Favorite Volumes operations".
2017-07-02Windows: set PIM of favorite to 0 only if TrueCryptMode is explicitly selected.Mounir IDRASSI1-1/+1
2017-07-02Linux/MacOSX: use aligned memory for allocating hash context to avoid issues ↵Mounir IDRASSI1-5/+5
on some platforms especially for Streebog.
2017-07-02Windows: Update EFI bootloader file from latest VeraCrypt-DCS 1.21Mounir IDRASSI6-0/+0
2017-07-02Windows: Update signed driver files for 1.21 releaseMounir IDRASSI2-0/+0
2017-07-02Windows: increment version to 1.21.2Mounir IDRASSI5-10/+10
2017-07-02Linux/MacOSX: align workspace stack variable in WhirlpoolTransform SSE code.Mounir IDRASSI1-1/+1
2017-07-02Avoid alignement issues with some old compilers by using movdqu instead of ↵Mounir IDRASSI1-8/+8
movdqa in SHA-256 SSE2 assembly.
2017-07-02Linux: remove existing "Setup/Linux/usr" if any before preparing for packaging.Mounir IDRASSI1-0/+1
2017-07-02Linux: Use $(CURDIR) instead of $(PWD) for the install target, as well as ↵Mounir IDRASSI1-1/+1
$(DESTDIR)/ (which will still install into / if 'DESTDIR' is unset.)
2017-07-02Increment version to 1.21 (1.21.1)Mounir IDRASSI11-33/+33
2017-07-01Windows: Update signed driver files for 1.21 releaseMounir IDRASSI2-0/+0
2017-07-01Fix crash on machines without SSSE3 support in CPU by correctly checking for ↵Mounir IDRASSI1-1/+1
SSSE3 before using SHA-512 SSE2 assembly which uses PSHUFB instruction.
2017-07-01For code logic clarity, add check for xgetbv support in CPU before using it.Mounir IDRASSI1-1/+1
2017-06-30Windows: fix missing resource in 64-bit build.Mounir IDRASSI1-1/+1