VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2022-08-25New sys enc wizard (#957)SysEncWizardPR957Felix Reichmann12-279/+1001327
* New VeraCrypt interface (for system encryption) with improved usability * System Encryption: translate password to US keyboard layout + improved new interface * Windows: Fix build error following merge * Windows: Remove unused variable * Windows: Add missing string in Language.xml * Windows: fix buffer overrun caused by wrong use of wmemset * Do not delete password file Since the file is only available in \Release\Setup Files\ it would be fully deleted after running this script the first time. * Correct return code Originally the function would have always returned the return-code 1 resulting that the user is not able to change the location for the rescue zip. * Added hint for sysenc Added a hint why the field for repeating the password is initially greyed out within the system encryption. * Corrected spelling mistake Corrected spelling mistake * Removed not working copy job The file to be copied was stored at the source location. Therefore the copyjob will not work. Instead the file is already in the target folder. * Removed RIPEMD-160 from Product64.wxs See commit from 21.03.2022 * Added german translation for new interface * Fixed PIM bug * Corrected translation file based on the guidelines within the pull request * Fixing merge conflicts * Fixed Compiling issues. Reverted keyboard translation * Removed artifacts of password translation * Corrected language.xml * Fixed order within german language file * Corrected positions Co-authored-by: Bruna2803 <bruna.radeljak@hotmail.com> Co-authored-by: felixreichmann <30237956+felixreichmann@users.noreply.github.com> Co-authored-by: Mounir IDRASSI <mounir.idrassi@idrix.fr>
2022-08-25Windows: use newer MEMORYSTATUSEX structure in call to GlobalMemoryStatusExMounir IDRASSI1-3/+3
2022-08-25Minor bugfixes (#950)Wendigo2-6/+12
* Update Dlgcode.c minor bugfixes * GlobalMemoryStatus x64 bugfix GlobalMemoryStatus deprecated in x64
2022-08-21Fix incorrect text color in dark mode (#920)Kenneth Chew2-3/+3
2022-08-21Fixed a typo error (#929)Matteo Baccan1-1/+1
Hi I have fixed a little typo error: a double semicolon at the end of one line ciao matteo
2022-08-16Documentation overwork (#953)Felix Reichmann1-47/+3
Github PR: https://github.com/veracrypt/VeraCrypt/pull/953 * Create CompilingGuidelinerh * Initial Upload Windows Compiling Guide * Removed RIPEMD-160 from Product64.wxs. See commit from 21.03.2022 * Completed Win compiling guideline * Added link to detailed compiling guide * Added link to detailed compiling guide * Restructured docu main page * Added sourceforge link * Added compiling guide for Linux * References to detailed instructions * Revert "Removed RIPEMD-160 from Product64.wxs. See commit from 21.03.2022" This reverts commit 024ae2a4659a6d9e65673531338e10bd10b8a3a0. * Correction of a div box
2022-03-31Update zlib to version 1.2.12Mounir IDRASSI18-989/+10767
2022-03-26Windows: Add various checks to address Coverity reported issues.Mounir IDRASSI11-28/+105
2022-03-26Windows: check result of WriteFile and don't block if it is failing (Coverity)Mounir IDRASSI1-4/+10
2022-03-26Remove dead code from chacha_ECRYPT_encrypt_bytes (Coverity)Mounir IDRASSI2-15/+16
2022-03-26Windows: Fix wrong parameter to CloseHandle function in case of failure of ↵Mounir IDRASSI1-1/+1
CreateEvent (Coverity)
2022-03-22Update release notes for 1.26.0 and set its date to March 21st 2022Mounir IDRASSI6-9/+9
2022-03-21Windows: Add latest 1.26 EFI bootloader files that are signed by Microsoft ↵Mounir IDRASSI12-0/+0
that come with the following modifications: - Fix bug in PasswordTimeout value handling that caused it to be limited to 255 seconds. - Rescue Disk: enhance "Boot Original Windows Loader" by using embedded backup of original Windows loader if it is missing from disk - Addition of Blake2s and removal of RIPEMD160 & GOST89
2022-03-21Increment version to 1.26 and update windows driver and MBR bootloader filesMounir IDRASSI41-47/+47
2022-03-21Add missing Blake2s source filesMounir IDRASSI10-0/+1474
2022-03-21Windows: Display message to recreate Rescue Disk when upgrading from version ↵Mounir IDRASSI1-1/+1
1.25 or earlier because of the changes in the supported algorithms
2022-03-21Windows: Block upgrade of VeraCrypt is the system is encrypted using ↵Mounir IDRASSI5-0/+42
RIPEMD-160 or GOST89 since they are not supported anymore.
2022-03-21Windows: use "HMAC-BLAKE2s-256" instead of "HMAC-BLAKE2s" for BLAKE2s PRF nameMounir IDRASSI1-1/+1
2022-03-08Implement support of Blake2s-256 hash algorithm and remove deprecated ↵Mounir IDRASSI50-1944/+482
algorithms RIPEMD-160 and GOST89.
2022-02-19Increment version to 1.25.9 and update Release Notes.Mounir IDRASSI46-38/+38
2022-02-19Linux/MacOSX: Fix hidden volume settings not correctly displayed when ↵Mounir IDRASSI3-4/+7
enabling hidden volume protection in mount options window
2022-02-18Linux: Fix code dump when built with -D_GLIBCXX_ASSERTIONS caused by an ↵Mounir IDRASSI1-1/+0
assert in libstdc++. The variable has enough capacity so pointer &buffer[0] is valid but since clear method was called, we are not supposed to access element at index 0. Related to Github issue #896
2022-02-16Windows: Fix wrong Debug reference in VS2019 solution fileMounir IDRASSI1-8/+8
2022-02-16Update Release Notes and release dateMounir IDRASSI1-1/+1
2022-02-16Increment version to 1.25.8.2 and update signed Windows driversMounir IDRASSI17-19/+19
2022-02-13Linux/FreeBSD: Enable building without AESNI support by setting environment ↵Mounir IDRASSI4-7/+32
variable DISABLE_AESNI to 1 during build or passing NOAESNI=1 to make command This comes following Github issue #892 and which should be solved thanks to this.
2022-02-11Windows: remove debugging left over call to MessageBoxMounir IDRASSI1-1/+0
2022-02-11Windows: Activate lzma project build for x64 targetMounir IDRASSI1-0/+4
2022-02-11Update copyrights following integration of LZMA SDKMounir IDRASSI7-94/+358
2022-02-11Update Release Notes and set release date to February 10th.Mounir IDRASSI1-1/+1
2022-02-11Windows: Increment version to 1.25.8.1 and update signed Windows driversMounir IDRASSI15-16/+16
2022-02-10Windows Driver: Don't cache the password if outer volume mounting succeeds ↵Mounir IDRASSI3-6/+23
but hidden volume mounting fails
2022-02-10Windows: Reduce the size of installers by almost 50% by using LZMA ↵Mounir IDRASSI41-117/+13661
compression instead of DEFLATE
2022-02-10Windows: Make Travel Disk contains 32-bit and arm64 binaries when VeraCrypt ↵Mounir IDRASSI12-1033/+1412
installed using MSI
2022-02-06Update Release Notes and add signed Windows driver.Mounir IDRASSI7-2/+2
2022-02-06Windows: Add registry setting to disable erasing encryption keys on Windows ↵Mounir IDRASSI5-2/+20
shutdown/reboot. This helps solve BSOD during shutdown/reboot on some machines. Under "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\veracrypt", create a REG_DWORD value named "VeraCryptEraseKeysShutdown" and set its value to 0.
2022-02-05Windows: Update MBR bootloader files.Mounir IDRASSI20-0/+0
2022-02-05Windows: remove unneeded reference to XML files from Setup Visual Studio projectMounir IDRASSI2-28/+0
2022-02-05Increment version to 1.25.8Mounir IDRASSI17-33/+33
2022-02-05Linux: avoid overriding /usr/sbin if it is a symlink (close #888)Mounir IDRASSI1-1/+1
2022-02-05Linux: make generic uninstaller remove all VeraCrypt related files that were ↵Mounir IDRASSI1-0/+2
copied by the generic installer
2022-02-02Windows: Fix failure to verify driver file signature since it is signed by ↵Mounir IDRASSI1-1/+12
Microsoft not us. This caused a failure when creating Traveler Disk
2022-02-02Windows: Fix failure to create Traveler Disk when VeraCrypt is installed ↵Mounir IDRASSI2-59/+136
using MSI
2022-02-01Windows MSI: set minimum support for MSI installation to Windows 7Mounir IDRASSI1-4/+4
2022-02-01Windows: Make MSI installer compatible with System Encryption by leveraging ↵Mounir IDRASSI4-30/+80
VeraCrypt service capabilities
2022-01-30Windows: Fix wrong check on IUnknown_QueryService function pointerMounir IDRASSI1-1/+1
2022-01-30Windows: Enhancement to CVE-2019-19501 fix to using ↵Mounir IDRASSI1-4/+119
IShellDispatch2::ShellExecuteW if RunAsDesktopUser fails. Also we don't use the fix if UAC is disabled since in this case the Shell Explorer.exe will be elevated anyway so we can't use to reduce elevation.
2022-01-16Windows MSI: set minimum support for MSI installation to Windows 8 as it was ↵Mounir IDRASSI1-8/+0
before
2022-01-08MacOSX: remove write permission also from group on application bundleVeraCrypt_1.25.7Mounir IDRASSI2-2/+2
2022-01-07Increment version to 1.25.7 and update Release NotesMounir IDRASSI39-32/+60