Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-07-13 | Windows: Solve failure to create hidden volume when PIM used for outer ↵ | Mounir IDRASSI | 1 | -3/+2 | |
volume. Correctly wipe password variable from memory. | |||||
2015-07-11 | Use Pim name for internal variables instead of the old name Pin | Mounir IDRASSI | 1 | -34/+34 | |
2015-07-06 | Windows: Display source location of errors in order to help diagnose issues ↵ | Mounir IDRASSI | 1 | -22/+22 | |
reported by users | |||||
2015-07-03 | Windows: Solve privacy issue inherited from TrueCrypt and linked to the ↵ | Mounir IDRASSI | 1 | -21/+73 | |
update of configuration and history XML files everytime VeraCrypt main window is opened, even if there was no modifications. This could give information about the usage of VeraCrypt. Now, configuration and history XML files are updated only when there are modifications. | |||||
2015-06-21 | Windows: Add a dedicate page for volume PIM in the volume creation wizard | Mounir IDRASSI | 1 | -23/+92 | |
2015-06-19 | Windows: in "VeraCrypt Format.exe", erase the volume PIM value after the ↵ | Mounir IDRASSI | 1 | -0/+3 | |
process is finished to avoid displaying it again if the user starts a new creation process right after | |||||
2015-06-08 | Windows: rename PIN to PIM to avoid confusion. Better error messages. | Mounir IDRASSI | 1 | -18/+18 | |
2015-06-07 | Windows: Add support for PIN in favorites. Several enhancements to GUI ↵ | Mounir IDRASSI | 1 | -0/+33 | |
handling of Dynamic Mode. | |||||
2015-05-26 | Windows: first implementation of dynamic mode | Mounir IDRASSI | 1 | -13/+44 | |
2015-05-26 | Windows: solve 64-bit compilation warnings after checking that they are ↵ | Mounir IDRASSI | 1 | -26/+26 | |
harmless. | |||||
2015-05-17 | Windows: First implementation of non-system volumes decryption. | Mounir IDRASSI | 1 | -58/+430 | |
2015-05-06 | Windows: Solve detection issue when resuming encryption. Add separate logic ↵ | Mounir IDRASSI | 1 | -18/+63 | |
for manual selection of device and display error message in case of failure. | |||||
2015-05-04 | Windows: When resuming in-place encryption, add manual selection of ↵ | Mounir IDRASSI | 1 | -18/+42 | |
partition possible. Display wait dialog when performing detection. | |||||
2015-05-03 | Windows: Make the Format wizard work again when launched from VeraCrypt menu. | Mounir IDRASSI | 1 | -1/+10 | |
2015-05-03 | Windows: enable showing/hiding password for system encryption in Windows UI ↵ | Mounir IDRASSI | 1 | -1/+0 | |
and in the bootloader (F5 key). This will be helpful to diagnose issues with non-US versions of Windows. | |||||
2015-04-27 | Windows: Better command line handling to make it more strict and robust. ↵ | Mounir IDRASSI | 1 | -25/+18 | |
This avoids issues when using wrong syntax. | |||||
2015-04-06 | Windows vulnerability fix: CryptAcquireContext vulnerability fix. Add checks ↵ | Mounir IDRASSI | 1 | -1/+9 | |
to random generator to abort in case of error and display a diagnose message to the user. | |||||
2015-02-22 | Windows: check password length for outer volume during hidden volume ↵ | Mounir IDRASSI | 1 | -3/+2 | |
creation to avoid potential plausible deniability issues. | |||||
2015-02-09 | Static Code Analysis: Avoid over-flaw in arithmetic operations by adding ↵ | Mounir IDRASSI | 1 | -7/+7 | |
more checks. Add extra checks. Solve various issues. | |||||
2015-02-08 | Windows: retry UAC prompt operation in case of failure. This avoids cancel ↵ | Mounir IDRASSI | 1 | -7/+11 | |
the whole operation if the user is not in front of the machine during UAC prompt (this happens ofter during in-place encryption of big NTFS partitions). | |||||
2015-01-03 | Windows: change cascade encryption naming format to reflex mathematical ↵ | Mounir IDRASSI | 1 | -3/+3 | |
composition of the encryption algorithm, thus being more clear. For example AES(Twofish(Serpent)) instead of AES-Twofish-Serpent. | |||||
2014-12-28 | Windows: support loading TrueCrypt volumes. Implement converting TrueCrypt ↵ | Mounir IDRASSI | 1 | -2/+2 | |
volumes to VeraCrypt using the change password functionality. | |||||
2014-12-28 | Windows: use the selected hash algorithm when resuming interrupted process. ↵ | Mounir IDRASSI | 1 | -2/+1 | |
This reduces volume opening time. | |||||
2014-12-27 | Windows: use the correct window handle for creating message boxes. This ↵ | Mounir IDRASSI | 1 | -167/+167 | |
became important after the introduction of the wait dialog in order to avoid having message boxes behind the wait dialog. | |||||
2014-12-16 | Windows: Enhance performance by implementing the possibility to choose the ↵ | Mounir IDRASSI | 1 | -16/+39 | |
correct hash algorithm of volumes during various operations (mount, change password...). In case of system encryption, slightly speedup Windows startup time by making the driver pickup the correct hash algorithm used for the encryption. | |||||
2014-11-08 | Display only allowed hashes when encrypting the system partition (now, ↵ | Mounir IDRASSI | 1 | -14/+25 | |
SHA-256 and RIPEMD-160). | |||||
2014-11-08 | Correctly handle dialogs from previous versions that used 'TRUE' instead of ↵ | Mounir IDRASSI | 1 | -1/+2 | |
'VERA' as a value for GWLP_USERDATA. | |||||
2014-11-08 | Add option in select the number of passes for volume header over-writing. By ↵ | Mounir IDRASSI | 1 | -5/+6 | |
default, it is set to 3 but it can be increased to 256 passes (which can lead to a delay of many hours for a single password change operation). | |||||
2014-11-08 | Static Code Analysis : Generalize the use of Safe String functions. Add some ↵ | Mounir IDRASSI | 1 | -93/+95 | |
NULL pointer checks. Avoid false-positive detection in AppendMenu (MF_SEPARATOR) calls by setting the last parameter to "" instead of NULL. | |||||
2014-11-08 | Static Code Analysis : fix usage of strncpy and sscanf. | Mounir IDRASSI | 1 | -1/+1 | |
2014-11-08 | Static Code Analysis : fix various memory leaks. | Mounir IDRASSI | 1 | -3/+6 | |
2014-11-08 | Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources ↵ | Mounir IDRASSI | 1 | -1/+1 | |
Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon. | |||||
2014-11-08 | Replace 'TRUE' by 'VERA' in some GUI constants and comments | Mounir IDRASSI | 1 | -1/+1 | |
2014-11-08 | Modifications to remove all TrueCrypt references in names. generate new ↵ | Mounir IDRASSI | 1 | -2/+2 | |
GUIDs for VeraCrypt. Replace "TRUE" by "VERA" in volume headers and driver magic word. | |||||
2014-11-08 | Add original TrueCrypt 7.1a sources | Mounir IDRASSI | 1 | -0/+9004 | |