VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
9 daysLinux/FreeBSD: Update build scripts: use wxwidgets 3.2.5, drop explicit GTK3 ↵Mounir IDRASSI8-148/+26
config since it detected automatically We also update copyrights date
9 daysLinux/FreeBSD: use GTK3 flavor for default generic gui installer. create ↵Mounir IDRASSI1-0/+12
GTK2 specific gui installer.
9 daysLinux/FreeBSD: automatically detect presence of GTK3. Remove WITHGTK3 ↵Mounir IDRASSI2-34/+32
makefile argument.
11 daysFix regression in core service deserialization (#1367)Jertzukka1-1/+0
Introducing data into the standard out in the core service will cause deserialization problems, as the pipes are used for interprocess communication.
11 daysMacOSX: Fix compiler warningMounir IDRASSI2-3/+3
Update friend declaration in FuseService.h and refactor GetCharWidth to ComputeCharWidth in WaitDialog.h to avoif hiding GetCharWidth inherited from wxWindow
11 daysIncrement version to 1.26.12Mounir IDRASSI17-47/+47
11 daysMacOSX: set FUSE-T workaround max delay to 5 seconds. Make logic specific to ↵Mounir IDRASSI1-6/+12
FUSE-T volumes.
11 daysMacOSX: Disable libtiff support in wxWidget full buildMounir IDRASSI1-0/+5
12 daysMacOSX: Add notarization script and entitlements file used to create ↵Mounir IDRASSI2-0/+148
official VeraCrypt dmg
12 daysMacOSX: use same version define in Info.plist files. Indicate 12.0 as ↵Mounir IDRASSI2-3/+3
minimum supported macOS version
12 daysmacOSX: Add "FUSE-T build" in About dialog when linking against FUSE-T ↵Mounir IDRASSI1-1/+5
instead of MacFUSE
12 daysUpdate copyright date in some filesMounir IDRASSI5-8/+8
12 daysIncrement version to 1.26.11. Update Release Notes.Mounir IDRASSI17-49/+49
13 daysMacOSX: Add for using FUSE-T instead of MacFUSEMounir IDRASSI8-12/+1112
The build script build_veracrypt_macosx.h now accepts the argument -f to enable fuse-t support. It is also possible to set the environment variable VC_OSX_FUSET to 1 for FUSE-T support. A change was done in CoreUnix::GetMountedVolumes to add a waiting loop for control file to be accessible because when using FUSE-T there always a delay before control file can be serialized.
14 daysMacOSX: Fix compilation error in build configurations other than official ↵Mounir IDRASSI1-1/+1
release
2024-06-19Linux: Fix assembly files not built on LinuxMounir IDRASSI1-1/+1
This is a regression caused by macOS changes. And endif statement was misplaced.
2024-06-18fix: Correct missing 'endif' in Main.make for MacOSX sectionMounir IDRASSI1-1/+1
Replaced an incorrect 'end' statement with 'endif' in the MacOSX-specific section of the Main.make file. This resolves the make error caused by an unclosed conditional block.
2024-06-16MacOSX: Update macOS specifics part of the ReadmeMounir IDRASSI1-10/+27
2024-06-16MacOSX: Fix whitespaces by using tabs in MakefileMounir IDRASSI1-32/+32
2024-06-16MacOSX: Use wxWidgets 3.2.5. Detect SDK version dynamically. Remove unused ↵Mounir IDRASSI1-6/+6
"r" getopts option.
2024-06-16MacOSX: Fix skipping codesign and productsign for local development buildMounir IDRASSI1-1/+6
2024-06-16MacOSX: Add universal binary of yasm so that it can run on arm64 machinesMounir IDRASSI1-0/+0
2024-06-16MacOSX: Better build flags logic handling. Suppress Xcode 15 linked warning.Mounir IDRASSI1-60/+59
2024-06-16Improve and simplify macOS builds (#1276)Deniz Türkoglu4-13/+78
* Add missing macOS requirement for 'make package' We need packages for the last build step on macOS, update docs to reflect the requirement. * Add build instructions using homebrew On macOS, we can use a package manager to easily install dependencies. This simplifies onboarding and building Veracrypt. * Add flag to use homebrew packages When building, we can use prebuilt wxwidgets from homebrew to simplify and speed up local building. We also put the package behind a flag as it's optional during development. * Skip signing for local builds When building with homebrew, skip signing. This can be put behind a flag to enable, if needed. * Use system yasm on macOS if available The binary in the repo is not universal (x86_64) and therefore building fails on arm architecture if Rosetta is not installed. Use local yasm if available. * Build local arch only in development When building via homebrew and locally, build only the local arch which skips ASM for arm(Mx) for MacOS. This removes the need to have rosetta installed for building. * Fix compilation issue when COMPILE_ASM is undefined Use a conditional check for COMPILE_ASM not being false instead of true. This avoids passing the variable to other parts of the build script. * Set SDK 12 as the minimum requirement and target Align the requirement to SDK 12 in both the makefile and script, and update the comment to remove confusion. I chose to leave this on 12 to be on the side of err and support as many building platforms as possible, when we can support. The local script now also sets the target using the local sdk version. This should improve the local development experience. * Fix wrong architecture for macOS in x86 builds We now build only the current arch for local development builds in macOS. This change also fixes the x86 builds failing. * Add instructions brew backed macOS local builds Flags to build a local build using homebrew packages are not default and require parameter -b to build. We also don't build packages directly, which requires -p. * Fix wxwidgets not linking in local x86 macOS development builds * Clarify build location in the document
2024-06-12Avoid conflict with C++17 features std::byte by using uint8 type instead of byteMounir IDRASSI132-1036/+1033
2024-06-03Avoid assert by verifying installed languages exist (#1354)Jertzukka1-8/+10
wxDir::GetAllFiles will throw an assert when opening the preferences dialog if for some reason the user has not installed VeraCrypt properly and is missing the intended folder. This patch adds a check to ensure the folder first exists before querying its files.
2024-06-03FreeBSD: Support automatic detection and mounting of ext2/3/4, exFAT, NTFS ↵Jertzukka2-3/+54
filesystems (#1350)
2024-06-03FreeBSD: Fix privilege escalation prompts not showing up (#1349)Jertzukka1-1/+1
The behaviour of `wc -l` is different on FreeBSD, in which the stdout result is padded by spaces in the beginning, which causes that the result[0] is not actually the value we care about. This patch adds a translate removing all whitespace from the output.
2024-05-21Linux: enhancements to build_cmake_deb.sh script. Use wxWidgets 3.2.5Mounir IDRASSI1-50/+55
2024-05-21Linux: Update dependencies for debian packages on Ubuntu 24.04 and Debian 13Mounir IDRASSI1-2/+15
packages were renamed and we linked statically against wxWidgets in GUI mode because of a bug in wxWidegts that was solved in 3.2.5 (https://github.com/wxWidgets/wxWidgets/issues/24081)
2024-05-18Prepare for changes in wxWidgets 3.3 (#1343)Jertzukka5-7/+7
* Move from deprecated wxScopedPtr to std::unique_ptr wxScopedPtr was included previously through some header hierarchy which as of 3.3 is no longer the case causing it to break. But instead of including a header for a deprecated function explicitly, just move to std::unique_ptr as recommended by upstream. * Convert to explicit conversions from wxString As of https://github.com/wxWidgets/wxWidgets/pull/23449/commits/35c35c235e9c29b40002131602e050dca8d65b8c wxWidgets defaults to STL classes, which has a side-effect that some implicit conversions break. This patch converts those conversions to explicit in anticipation of wxWidgets 3.3 release.
2024-05-08Fix incorrect max hidden volume size for file containers on CLI (#1338)Jertzukka1-6/+12
Currently the maximum hidden volume size for file containers is limited by available free space on the device the file container resides on, which we do not care about. This commit changes so that only Normal volumes get their `maxVolumeSize` limited by `AvailableDiskSpace`. Also the --size=max parameter is restricted from hidden volume creation as there is no way to determine a good size as we do not mount the outer volume through the CLI process flow to determine available free space on the outer volume.
2024-05-08Windows: Enhance memory protection mechanism by preventing process owner ↵Mounir IDRASSI1-2/+31
from granting permissions to itself.
2024-04-10Fix: 7 typos (#1324)RoboSchmied3-7/+7
Signed-off-by: RoboSchmied <github@roboschmie.de>
2024-04-10update zlib + copyright (#1302)DLL12513-81/+1736
2024-04-10Correct exceptions to match the correct language strings (#1299)Jertzukka1-3/+3
Fixes the order of the language strings to match the correct exceptions.
2024-04-10Unix CLI: Don't initially re-ask PIM if it was already specified (#1288)Jertzukka1-1/+0
We don't need to reset PIM in PasswordException as it is immediately fell back to if PIM is specified in text mode, but password is not. This causes an exception that resets the PIM when it shouldn't.
2023-12-11Linux: Allows GUI to launch in a Wayland-only environment (#1264)Jertzukka1-1/+1
Currently we check whether the system has DISPLAY environment variable set, which is the case in a system that uses X11 natively or XWayland. This variable is not set in a system with only Wayland, so we need to also check whether WAYLAND_DISPLAY is set. Fixes: #184
2023-12-11macOS: Use correct Disk Utility location when "check filesystem" is ran (#1273)Jertzukka1-1/+7
2023-12-11macOS: Fix near zero width PIM input box and simplify wxTextValidator logic ↵Jertzukka4-13/+8
(#1274) * macOS: Fix issue where PIM box has no width in Wizard VolumePimTextCtrl has a problem with width on macOS which we can fix by adjusting the proportions of the elements inside the PimSizer, which seems like a better solution than using a forced minimum size in pixels. Adjacent, simplifies the validator logic for digits in PIM field. Fixes #1219
2023-11-19Linux/MacOSX: put entries at line start and use tabs instead of spacesMounir IDRASSI2-94/+94
2023-11-19MacOSX: update version field in pkg project filesMounir IDRASSI2-4/+4
2023-11-19Linux/FreeBSD/macOS: Implement language selection settings (#1253)Jertzukka15-70/+810
* Implement Language selection into settings Initial commit to create a new tab in PreferencesNotebook for Language selection. By default, if nothing is chosen, it uses the current behaviour of using the language from system environment variables. If another language is chosen from the settings, it is saved into the Configuration.xml and this is used instead. * Fix SetStringSelection() assert issue on macOS * Add header include to fix build * Add current language pack, authors and way to use literal strings * Translations also for FreeBSD * Minimal GTK3 WX build on FreeBSD requires wxGraphicsContext * Get Preferences properly instead of workaround function * Use WrapSizer instead of BoxSizer for author line This forces long author lists to be put on a new line, reducing the need to increase window width. * Update Finnish translation * Borrow translation from IDM_LANGUAGE where it makes sense * Remove colon and thus unneeded function * Simplify Language tab layout * Reintroduce macOS specific fixes to Forms.cpp * cleanup
2023-11-13wolfCrypt as crypto backend for VeraCrypt (#1227)lealem4736-219/+1103
* wolfCrypt as crypto backend for VeraCrypt * Refactor to use EncryptionModeWolfCryptXTS class
2023-11-09Update MBR bootloader to 1.26.10 versionMounir IDRASSI20-0/+0
2023-11-09Increment version to 1.26.10. Update signed Windows drivers.Mounir IDRASSI24-50/+50
2023-11-08Windows: Fix failure to format some disks (e.g. VHDX) caused by partition ↵Mounir IDRASSI2-11/+10
offset not 4K aligned Now we set offset to 1MB which is a typical values used for MBR disks. We also use a more standard way to calculate legacy number of cylinders
2023-11-08Linux: Fix generic installation script on Konsole in Wayland (#1244)Jertzukka2-4/+4
The x11 aliases such as --title are only available in the Qt application if the XDG_SESSION_TYPE is x11. Instead of using an alias, we can use --qwindowtitle directly.
2023-10-31Linux: Focus PIM field when selected (#1239)Jertzukka1-0/+1
Sets focus to VolumePimTextCtrl initially when the checkbox is clicked.
2023-10-13Windows: fallback to absolute positioning if relative positioning failsMounir IDRASSI1-10/+13
This can serve as workaround if a disk rejects relative positioning for some reason.