VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-06-29Readme: Add YASM as a requirement for building VeraCrypt. Remove NASM and ↵Mounir IDRASSI1-40/+40
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 IDRASSI1-1/+1
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-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-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 IDRASSI371-376/+376
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 IDRASSI11-32/+32
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)
2017-06-21Crypto: Add optimized Camellia assembly implementation for x86_64 based on ↵Mounir IDRASSI18-13/+2475
work by Jussi Kivilinna (https://github.com/jkivilin/supercop-blockciphers). This improve speed by a factor of 2.5 when AES-NI supported by CPU and by 30% if AES-NI not supported.
2017-06-21Windows EFI Bootloader: Add new attributes "DcsBmlDriver" and ↵Mounir IDRASSI2-1/+10
"DcsBmlLockFlags" to EFI configuration DcsProp. Set their values to 0 to disable DcsBml functionality.
2017-06-21Update EFI bootloader files to latest VeraCrypt-DCS (commit "BML flags added")Mounir IDRASSI10-0/+0
2017-06-21Windows: fix compilation error of assembly files after latest changes on Linux.Mounir IDRASSI2-2/+4
2017-06-13Linux/MacOSX: Modify Makefile to separate between build and packaging. Add ↵Mounir IDRASSI4-9/+43
install target for local installation.
2017-06-13Linux: built VeraCrypt binary with support for Address Space Layout ↵Mounir IDRASSI1-4/+4
Randomization (ASLR).
2017-06-13Linux: fix executable stack in resulting binary which was caused by crypto ↵Mounir IDRASSI5-0/+48
assembly files missing the GNU-stack note.
2017-06-11Windows: various fixes following Coverity analysis.Mounir IDRASSI6-107/+182
2017-06-11Windows: Add checks on IOCTL_DISK_GET_DRIVE_LAYOUT_EX response to make ↵Mounir IDRASSI1-44/+48
Coverity happy.
2017-06-11Windows: Remove unused "Parent" field in _TEXT_EDIT_DIALOG_PARAM structureMounir IDRASSI1-1/+1
2017-06-11Windows: Remove unused method ReadEfiConfigMounir IDRASSI9-111/+13
2017-06-11Windows: fix GetPhysicalDriveStorageInformation failure caused by device ↵Mounir IDRASSI1-1/+0
handle wrongly closed in GetDeviceStorageProperty
2017-06-11Windows: fix compiler warningsMounir IDRASSI6-17/+15
2017-06-11Windows: Update EFI bootloader file from latest VeraCrypt-DCS 1.20Mounir IDRASSI14-0/+0
2017-06-11Windows: code refactoring for handling of ESP files (DcsProp and PlatformInfo).Mounir IDRASSI3-67/+89
2017-06-10Windows: Update signed driver files of 1.20 releaseMounir IDRASSI2-0/+0
2017-06-10Windows Driver Security: Use enhanced protection of NX pool under Windows 8 ↵Mounir IDRASSI4-4/+22
and later.
2017-06-10Windows Security: built binaries with support for Address Space Layout ↵Mounir IDRASSI4-7/+7
Randomization (ASLR).
2017-06-10Windows: reduce WNetGetConnection performance impact by making calls every 1 ↵Mounir IDRASSI1-2/+2
minute instead of every 2 seconds. This should be enough since the list of mapped network drive will not change so often.
2017-06-09Windows: Enhancements to EFI System Information dialogMounir IDRASSI3-10/+13
2017-06-09Windows: Disable button for EFI PlatformInfo if the file is missingMounir IDRASSI1-26/+31
2017-06-09Windows: Fix false warning in case of GPT about Windows not installed on ↵Mounir IDRASSI1-1/+1
boot drive. This is caused by the fact that presence of "bootmgr" file is not mandatory in case of EFI Boot Loader.
2017-06-08Windows: Validate XML format of EFI DcsProp after user editing and before ↵Mounir IDRASSI6-34/+181
writing it to disk. Enhance UI handling of DcsProp editing and PlatformInfo display.
2017-06-08Windows: correctly handle UTF-8 BOM when editing EFI DcsProp XML fileMounir IDRASSI1-9/+32
2017-06-05Windows: create dedicated project for zip library and link other binaries ↵Mounir IDRASSI12-2208/+786
against it instead of recompiling zlib and libzip for each project separately.
2017-06-05cland static code analyzer fixeskavsrf2-18/+22
2017-06-05Beta2 patch 1kavsrf22-64/+240
Edit DcsProp and PlatformInfo from System->Settings EFI loader updated