VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/Password.c
AgeCommit message (Collapse)AuthorFilesLines
2017-07-27Windows: use large output buffer for IOCTL_DISK_GET_DRIVE_GEOMETRY_EX calls ↵Mounir IDRASSI1-3/+3
to avoid failure with disk drivers that don't support returning only sizeof(DISK_GEOMETRY_EX).
2017-07-02Windows: fix documentation and UI messages about the PIM constraints and ↵Mounir IDRASSI1-4/+5
calculation formula when EFI system encryption is using SHA-512 or Whirlpool. For historical reasons, if SHA-512 or Whirlpool is selected for EFI system encryption, then iterations = 15000 + (PIM x 1000) and not iterations = PIM x 2048 like the other algorithms.
2017-06-23Update IDRIX copyright yearMounir IDRASSI1-1/+1
2017-05-17Windows: use IOCTL_DISK_GET_DRIVE_GEOMETRY_EX instead of the deprecated ↵Mounir IDRASSI1-4/+3
IOCTL_DISK_GET_DRIVE_GEOMETRY in order to get accurate disk size value.
2016-09-11Windows: in case of In-Place encryption, encrypt random data instead of ↵Mounir IDRASSI1-1/+1
existing data when filling unused space like the other cases.
2016-08-15Windows: fill unused/reserved header areas with the result of encryption of ↵Mounir IDRASSI1-1/+1
random data instead of the encryption of zeros for better entropy of resulting random data.
2016-08-15Windows: Fix vulnerability inherited from TrueCrypt that allows an attacker ↵Mounir IDRASSI1-0/+42
to detect with high probability if a hidden volume is present. Vulnerability reported by Ivanov Alexey Mikhailovich.
2016-05-10Remove trailing whitespaceDavid Foerster1-15/+15
2016-05-10Normalize all line terminatorsDavid Foerster1-491/+491
2016-02-07Windows:Fix various issues and warnings reported by static code analysis ↵Mounir IDRASSI1-2/+2
tool Coverity.
2016-01-20Copyright: update dates to include 2016.Mounir IDRASSI1-1/+1
2015-11-26Windows: Full UNICODE rewrite and implement support for UNICODE passwords.Mounir IDRASSI1-9/+29
2015-09-16Windows: first implementation of CLI support for creating volumes.Mounir IDRASSI1-3/+3
2015-08-06Update license information to reflect the use of a dual license Apache 2.0 ↵Mounir IDRASSI1-7/+9
and TrueCrypt 3.0.
2015-07-13Windows: Modify PIM parts in GUI to make it easier to use. Users must ↵Mounir IDRASSI1-0/+7
explicitly check "User PIM" to enable its use.
2015-07-11Use Pim name for internal variables instead of the old name PinMounir IDRASSI1-7/+7
2015-07-06Windows: Display source location of errors in order to help diagnose issues ↵Mounir IDRASSI1-3/+7
reported by users
2015-06-21Windows: Add a dedicate page for volume PIM in the volume creation wizardMounir IDRASSI1-3/+3
2015-06-08Windows: rename PIN to PIM to avoid confusion. Better error messages.Mounir IDRASSI1-2/+2
2015-05-26Windows: first implementation of dynamic modeMounir IDRASSI1-3/+18
2015-04-06Windows vulnerability fix: CryptAcquireContext vulnerability fix. Add checks ↵Mounir IDRASSI1-0/+6
to random generator to abort in case of error and display a diagnose message to the user.
2015-02-09Static Code Analysis: handle unused variables more properly. Catch STL ↵Mounir IDRASSI1-1/+1
exception. Add more checks. Add proper cast to arithmetic operations.
2014-12-28Windows: support loading TrueCrypt volumes. Implement converting TrueCrypt ↵Mounir IDRASSI1-4/+4
volumes to VeraCrypt using the change password functionality.
2014-12-27Windows: use the correct window handle for creating message boxes. This ↵Mounir IDRASSI1-2/+2
became important after the introduction of the wait dialog in order to avoid having message boxes behind the wait dialog.
2014-12-20Reduce time for reporting wrong password by removing support for legacy ↵Mounir IDRASSI1-7/+1
hidden format because it was never functional and it was superseded by current hidden format.
2014-12-16Windows: Enhance performance by implementing the possibility to choose the ↵Mounir IDRASSI1-2/+2
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-12-11Windows: always display random gathering dialog when UserEnrichRandomPool is ↵Mounir IDRASSI1-0/+2
called instead of once per application run. This is implemented through the call SetRandomPoolEnrichedByUserStatus(FALSE) at the begining of sensitive operations instead of changing UserEnrichRandomPool because in the same call there can be many calls to UserEnrichRandomPool which can result in displaying the dialog many times.
2014-11-08Windows vulnerability fix: correct possible BSOD attack targeted towards ↵Mounir IDRASSI1-0/+7
GetWipePassCount() / WipeBuffer() found by the Open Crypto Audit Project.
2014-11-08Add option in select the number of passes for volume header over-writing. By ↵Mounir IDRASSI1-4/+4
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-08Static Code Analysis : Add various NULL pointers checksMounir IDRASSI1-10/+22
2014-11-08Add original TrueCrypt 7.1a sourcesMounir IDRASSI1-0/+422