VeraCrypt
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-07-03Documentation: Update Incompatibilities section to mention both Outpost ↵Mounir IDRASSI2-3/+5
Firewall or Outpost Security Suite and to point to corresponding ticket at Sourceforce.
2017-07-03Documentation: Update the FAQ to mention CHM file of User Guide instead of PDFMounir IDRASSI2-4/+4
2017-07-03Documentation: Add workaround for hang issues encountered on some Windows ↵Mounir IDRASSI3-4/+14
machine during mount/dismount.
2017-07-02Windows: fix documentation and UI messages about the PIM constraints and ↵Mounir IDRASSI6-14/+27
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-02Language XML files: Update Arabic translation (contributed by Ali Khojah)Mounir IDRASSI1-9/+9
2017-07-02Increment version to 1.21 (1.21.1)Mounir IDRASSI49-71/+71
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
2017-06-29Merge pull request #175 from robertsvensson/patch-1VeraCrypt_1.20Mounir IDRASSI1-5/+5
Minor TOC correction
2017-06-29Minor TOC correctionRobert Svensson1-5/+5
Added missing punctuation to make TOC easier to read
2017-06-29Readme: Add YASM as a requirement for building VeraCrypt. Remove NASM and ↵Mounir IDRASSI2-42/+42
makeself requirement for Linux/MacOSX build. Make Readme.txt identical to README.md.
2017-06-29Readme: update statement concerning Mac OSX SDK to use for building VeraCrypt.Mounir IDRASSI2-2/+2
2017-06-29Set 1.20 release date to June 29th 2017Mounir IDRASSI1-1/+1
2017-06-29MacOSX: put back full wxWidgets build in official build script.Mounir IDRASSI1-3/+2
2017-06-29Documentation: Add documentation for newly added /secureDesktop command line ↵Mounir IDRASSI2-0/+5
switch.
2017-06-29Revert "Documentation: Update chm file to match the one included in the ↵Mounir IDRASSI1-0/+0
official installer." This reverts commit ebe2259c1090aa2cd98b9f4800b52e9ed25614c8.
2017-06-29Documentation: Update chm file to match the one included in the official ↵Mounir IDRASSI1-0/+0
installer.
2017-06-29Windows: reduce size of 64-bit binaries by not embedding 32-bit EFI ↵Mounir IDRASSI5-3/+74
bootloader files in their resources.
2017-06-29Windows: Update EFI bootloader file from latest VeraCrypt-DCSMounir IDRASSI4-0/+0
2017-06-29Update release date and increment version to 1.20.3.4Mounir IDRASSI6-11/+11
2017-06-29Windows: Update signed driver files for 1.20 releaseMounir IDRASSI2-0/+0
2017-06-27Enable AVX assembly instructions only when the OS implements AVX supportMounir IDRASSI1-2/+19
2017-06-27Windows: use yasm define __YASM__ for compatibility with the assembly ↵Mounir IDRASSI2-25/+25
changes done in MacOSX.
2017-06-27MacOSX: Update build and packaging scripts to require OSX Lion (10.7).Mounir IDRASSI2-7/+8
2017-06-27MacOSX: various changes for assembly files build. Don't use 32-bit assembly ↵Mounir IDRASSI13-42/+36
code of SHA-512 since it is not compatible with PIE configuration of OSX compiler (absolute addressing used)
2017-06-24Language XML files: update to Dutch translation by Peter Tak.Mounir IDRASSI1-26/+26
2017-06-24Linux/MacOSX: properly declare 64-bit constant integer values to avoid being ↵Mounir IDRASSI1-28/+28
truncated by compiler.
2017-06-23Update IDRIX copyright yearMounir IDRASSI372-378/+378
2017-06-23Linux/MacOSX: use yasm instead of nasm for compiling all assembly files.Mounir IDRASSI4-25/+24
2017-06-23Modify Aes_hw_cpu.asm to use nasm syntax that is compatible with yasm.Mounir IDRASSI1-16/+16
2017-06-23Linux/MacOSX: fix missing namespace in call to Cipher::IsHwSupportEnabledMounir IDRASSI1-1/+1
2017-06-23Increment version to 1.20 (1.20.3)Mounir IDRASSI49-79/+79
2017-06-23Language XML files: update to Dutch translation by Peter Tak.Mounir IDRASSI1-195/+196
2017-06-23Windows: Update signed driver files of 1.20 release (include SHA-2 speed ↵Mounir IDRASSI2-0/+0
optimization)
2017-06-23Crypto: Add optimized SHA-512 and SHA-256 assembly implementations for ↵Mounir IDRASSI28-789/+5313
x86_64 and x86. This improves speed by 30%.
2017-06-21Windows: Update EFI bootloader file from latest VeraCrypt-DCS that includes ↵Mounir IDRASSI4-0/+0
Camellia 64-bit speed optimization
2017-06-21Windows: don't use AVX optimized Camellia in EFI bootloader until ↵Mounir IDRASSI1-1/+4
compatibility issues are investigated
2017-06-21Windows: Update signed driver files of 1.20 release (include Camellia speed ↵Mounir IDRASSI2-0/+0
optimization)