Mounir IDRASSI
|
1c11ee428d
|
Add option in select the number of passes for volume header over-writing. By 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 23:21:43 +01:00 |
|
Mounir IDRASSI
|
97154aaf51
|
Lower number of times we overwrite volume header during the encryption of a partition if the user choose to wipe the driver. Latest studies show that even one pass is enough to make data irretrievable. A value of 3 is a conservative approach that enhance performance without scarifying security. http://www.infosecisland.com/blogview/16130-The-Urban-Legend-of-Multipass-Hard-Disk-Overwrite.html http://digital-forensics.sans.org/blog/2009/01/15/overwriting-hard-drive-data/
|
2014-11-08 23:21:40 +01:00 |
|
Mounir IDRASSI
|
1ddae20932
|
Correct Linux compilation after removing legacy cryptographic code.
|
2014-11-08 23:21:38 +01:00 |
|
Mounir IDRASSI
|
a5c1978eef
|
Remove remaining legacy cryptographic algorithms that are never used by VeraCrypt.
|
2014-11-08 23:21:35 +01:00 |
|
Mounir IDRASSI
|
75f7808719
|
Remove deprecated/legacy cryptographic algorithms and encryption modes that are never used by VeraCrypt. This will speed up volumes opening in many cases.
|
2014-11-08 23:21:32 +01:00 |
|
Mounir IDRASSI
|
0594532cf1
|
Mount.c : call burn directly in szFileName instead of (&szFileName). This was not an issue because the compiler returns the same address for both, but for the sake of clarity it had to be corrected.
|
2014-11-08 23:21:30 +01:00 |
|
Mounir IDRASSI
|
c220db0128
|
Static Code Analysis : Generalize the use of Safe String functions. Add some NULL pointer checks. Avoid false-positive detection in AppendMenu (MF_SEPARATOR) calls by setting the last parameter to "" instead of NULL.
|
2014-11-08 23:21:27 +01:00 |
|
Mounir IDRASSI
|
c01f392a7b
|
Static Code Analysis : Use Safe String function in Dlgcode.c. Add byte size parameter in various functions to help implement secure handling of strings.
|
2014-11-08 23:21:24 +01:00 |
|
Mounir IDRASSI
|
bbc738c490
|
Static Code Analysis : Add various NULL pointers checks
|
2014-11-08 23:21:21 +01:00 |
|
Mounir IDRASSI
|
8bf58486af
|
Static Code Analysis : Add NULL pointers checks on the result of ATL string conversion. Avoid some conversions by using UNICODE functions directly.
|
2014-11-08 23:21:18 +01:00 |
|
Mounir IDRASSI
|
ba733dd032
|
Use Safe String functions in Registry.c and add a unicode version of WriteLocalMachineRegistryDword function to avoid doing conversions when used.
|
2014-11-08 23:21:16 +01:00 |
|
Mounir IDRASSI
|
016edc150b
|
Static Code Analysis : Use Safe String functions in Setup code to avoid potential security issues.
|
2014-11-08 23:21:13 +01:00 |
|
Mounir IDRASSI
|
5c1db9d0e1
|
Static Code Analysis : Add check on the return of strtok inside mkfulldir_internal to avoid warning.
|
2014-11-08 23:21:10 +01:00 |
|
Mounir IDRASSI
|
f3625a080f
|
Static Code Analysis: Correctly initialize variables to avoid false-positive detection in the boot code.
|
2014-11-08 23:21:07 +01:00 |
|
Mounir IDRASSI
|
3137d36d9a
|
Static Code Analysis : Use Safe string functions inside VeraCrypt Device Driver to avoid potential security issues. Add many checks for NULL pointers to handle low memory use cases.
|
2014-11-08 23:21:04 +01:00 |
|
Mounir IDRASSI
|
516fda09a7
|
Remove test inherited from TrueCrypt because it's always true since we inherited from version 0x71a
|
2014-11-08 23:21:02 +01:00 |
|
Mounir IDRASSI
|
626a3aedd7
|
Disable posting the results of minidump analysis until a dedicated URL is put in place.
|
2014-11-08 23:20:59 +01:00 |
|
Mounir IDRASSI
|
c7c8e28655
|
Disable crash handling until we put in place a dedicated URL for posting crash information.
|
2014-11-08 23:20:56 +01:00 |
|
Mounir IDRASSI
|
469f1dba40
|
Remove unused label.
|
2014-11-08 23:20:53 +01:00 |
|
Mounir IDRASSI
|
515495f2f3
|
Static Code Analysis : Correctly initialize member variable in HostDevice constructor
|
2014-11-08 23:20:51 +01:00 |
|
Mounir IDRASSI
|
7bb812af66
|
Static Code Analysis : Avoid using invalidate integer value received from GetFileSize.
|
2014-11-08 23:20:48 +01:00 |
|
Mounir IDRASSI
|
9d027b02b9
|
Static Code Analysis : fix usage of strncpy and sscanf.
|
2014-11-08 23:20:45 +01:00 |
|
Mounir IDRASSI
|
899a22b840
|
Static Code Analysis : fix various memory leaks.
|
2014-11-08 23:20:43 +01:00 |
|
Mounir IDRASSI
|
5281e2d3b9
|
Static Code Analysis : fix resource leakage by ensuring that all Windows handles are released properly
|
2014-11-08 23:20:40 +01:00 |
|
Mounir IDRASSI
|
2a288a7e12
|
Static Code Analysis : Avoid potential overflow when parsing language file by specifying width for 's' conversion specifier
|
2014-11-08 23:20:37 +01:00 |
|
Mounir IDRASSI
|
f67748ae8e
|
Static Code Analysis : fix non-absolute DLL/process loads that can be hijacked (Microsoft Security Advisory 2269637).
|
2014-11-08 23:20:35 +01:00 |
|
Mounir IDRASSI
|
d6817f941a
|
Static Code Analysis : Add virtual attribute to destructor of classes that have virtual methods inherited from a base class
|
2014-11-08 23:20:32 +01:00 |
|
Mounir IDRASSI
|
f19cfb3361
|
Static Code Analysis : Correctly initialize member variables in various constructors
|
2014-11-08 23:20:29 +01:00 |
|
Mounir IDRASSI
|
9bb962c8bb
|
Fix password memory leak inside the Device driver in boot encryption mode.
|
2014-11-08 23:20:27 +01:00 |
|
Mounir IDRASSI
|
0dda93ca47
|
Avoid changing metadata (ownership, permission,etc) of /usr when unpacking VeraCrypt tar package
|
2014-11-08 23:20:24 +01:00 |
|
Mounir IDRASSI
|
c2d4bf6207
|
Set the Execute bit for VeraCrypt uninstall script before copying it to the tar package
|
2014-11-08 23:20:22 +01:00 |
|
Mounir IDRASSI
|
a9404c2bff
|
Remove VeraCrypt version number from Readme.txt.
|
2014-11-08 23:20:19 +01:00 |
|
Mounir IDRASSI
|
5218b6dfe8
|
Add VeraCrypt specific Linux packaging code in Makefiles and add various helper scripts. The original TrueCrypt sources didn't contain anything about this.
|
2014-11-08 23:20:17 +01:00 |
|
Mounir IDRASSI
|
41a22ca4e7
|
Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.
|
2014-11-08 23:20:14 +01:00 |
|
Mounir IDRASSI
|
17823cb58c
|
Update wxFormBuild file to latest version (3.5 beta) and generate new Forms.cpp/Forms.h files.
|
2014-11-08 23:20:11 +01:00 |
|
Mounir IDRASSI
|
a81790329f
|
Point to the SourceForge website instead of idrix.fr for the application link. Remove OS parameter is URL constructed under Linux/MacOSX
|
2014-11-08 23:20:08 +01:00 |
|
Mounir IDRASSI
|
4b6594325f
|
Update wxWidgets compilation flags in order to be compatible with wxWidgets 3.0 and remove unneeded dependencies to ensure maximum compatibility.
|
2014-11-08 23:20:06 +01:00 |
|
Mounir IDRASSI
|
e1de322ed3
|
Replace 'TRUE' by 'VERA' in some GUI constants and comments
|
2014-11-08 23:20:03 +01:00 |
|
Mounir IDRASSI
|
b6dc9e9e15
|
Change legacy version check in newly added Linux/MacOSX sources from 0x600 (TrueCrypt) to 0x10b
|
2014-11-08 23:20:01 +01:00 |
|
Mounir IDRASSI
|
b9e34c30e8
|
Require to upgrade rescue disk if upgrading from version 1.0a of VeraCrypt instead of version 6.0a (left over from TrueCrypt). Does anyone still uses VeraCrypt 1.0a???
|
2014-11-08 23:19:58 +01:00 |
|
Mounir IDRASSI
|
95c6072a57
|
Modify language files from TrueCrypt to make them compatible with VeraCrypt. Set supported version to 1.0d.
|
2014-11-08 23:19:55 +01:00 |
|
Mounir IDRASSI
|
859393caf1
|
Add original TrueCrypt 7.1a translation language files
|
2014-11-08 23:19:51 +01:00 |
|
Mounir IDRASSI
|
437cbd9c8b
|
Remove some legacy code inherited from True and that doesn't apply to VeraCrypt
|
2014-11-08 23:19:47 +01:00 |
|
Mounir IDRASSI
|
f34d894f6e
|
Detect correctly VeraCrypt rescue disk by looking for the little-endian encoding of "Vera" instead of "True".
|
2014-11-08 23:19:44 +01:00 |
|
Mounir IDRASSI
|
7875d3ec3f
|
Set volume header to 'VERA' instead of 'TRUE' in newly added Linux/MacOSX code
|
2014-11-08 23:19:42 +01:00 |
|
Mounir IDRASSI
|
f701dc1c29
|
Correct typos introduced inadvertently
|
2014-11-08 23:19:39 +01:00 |
|
Mounir IDRASSI
|
bacd720279
|
Correct values of RIPEMD160 iterations count to be identical to Windows ones (defined in function get_pkcs5_iteration_count)
|
2014-11-08 23:19:36 +01:00 |
|
Mounir IDRASSI
|
31fd16979f
|
Change TrueCrypt to VeraCrypt in some comments
|
2014-11-08 23:19:34 +01:00 |
|
Mounir IDRASSI
|
4d12001e10
|
Adapt Makefiles for VeraCrypt. Use PKCS#11 headers from source tree is not specified elsewhere.
|
2014-11-08 23:19:32 +01:00 |
|
Mounir IDRASSI
|
084a8ee85c
|
wxWidgets 3.0 compatibility modifications
|
2014-11-08 23:19:29 +01:00 |
|