VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Boot/Windows/BootMain.cpp
AgeCommit message (Expand)AuthorFilesLines
2017-06-23Update IDRIX copyright yearMounir IDRASSI1-1/+1
2016-10-17Windows Bootloader: fix issue in copy process of hidden OS caused by use of w...Mounir IDRASSI1-1/+4
2016-05-10Remove trailing whitespaceDavid Foerster1-11/+11
2016-05-10Normalize all line terminatorsDavid Foerster1-1269/+1269
2016-04-20Windows: Add option to avoid PIM prompt in pre-boot authentication by storing...Mounir IDRASSI1-54/+66
2016-01-29Windows Bootloader: Always hide password/PIM values with '*' after ENTER is h...Mounir IDRASSI1-15/+15
2016-01-20Copyright: update dates to include 2016.Mounir IDRASSI1-1/+1
2015-12-05Windows Rescue Disk: when decryption paused/finished, display message to indi...Mounir IDRASSI1-0/+4
2015-11-26Windows Bootloader: Avoid displaying empty new line between password and PIM ...Mounir IDRASSI1-1/+4
2015-10-15Windows Bootloader: Protect password/PIM length by filling the fields to thei...Mounir IDRASSI1-3/+21
2015-08-28Windows bootloader: Mask/unmask PIM value in bootloader the same way as the p...Mounir IDRASSI1-2/+7
2015-08-06Update license information to reflect the use of a dual license Apache 2.0 an...Mounir IDRASSI1-5/+9
2015-07-11Use Pim name for internal variables instead of the old name PinMounir IDRASSI1-14/+14
2015-06-08Windows: rename PIN to PIM to avoid confusion. Better error messages.Mounir IDRASSI1-4/+4
2015-05-26Windows: first implementation of dynamic modeMounir IDRASSI1-11/+72
2015-05-03Windows: enable showing/hiding password for system encryption in Windows UI a...Mounir IDRASSI1-2/+9
2015-03-02Windows Bootloader: Display message after entering password to inform user th...Mounir IDRASSI1-1/+5
2014-11-08Static Code Analysis: Correctly initialize variables to avoid false-positive ...Mounir IDRASSI1-2/+2
2014-11-08Detect correctly VeraCrypt rescue disk by looking for the little-endian encod...Mounir IDRASSI1-1/+1
2014-11-08Modifications to remove all TrueCrypt references in names. generate new GUIDs...Mounir IDRASSI1-6/+6
2014-11-08Add original TrueCrypt 7.1a sourcesMounir IDRASSI1-0/+1151
AUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #define _ZIP_COMPILING_DEPRECATED #include "zipint.h" ZIP_EXTERN const char * zip_get_file_comment(zip_t *za, zip_uint64_t idx, int *lenp, int flags) { zip_uint32_t len; const char *s; if ((s=zip_file_get_comment(za, idx, &len, (zip_flags_t)flags)) != NULL) { if (lenp) *lenp = (int)len; } return s; }