VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main
AgeCommit message (Expand)AuthorFilesLines
2019-10-26MacOSX: Update build script and Makefile to correctly build Legacy version of...Mounir IDRASSI1-0/+10
2019-10-26MacOSX: fix truncated algorithms description in the Encryption Options page o...Mounir IDRASSI2-0/+24
2019-10-19MacOSX: Support APFS for creating volumes.Mounir IDRASSI4-0/+13
2019-10-16Small GUI enhancements (#521)El Mostafa Idrassi2-12/+12
2019-10-16Fixed drag and drop not showing correct path, specifically under GTK-3. (#520)El Mostafa Idrassi3-6/+0
2019-10-15Fixed buttons not being correctly aligned (#518)El Mostafa Idrassi2-9/+12
2019-10-14MacOSX: Add build scripts and modifications to linking against wxWidgets 3.1....Mounir IDRASSI1-0/+4
2019-10-11MacOSX: Fixed devices / partitions not showing in the device selection dialog...El Mostafa Idrassi1-6/+34
2019-10-06Linux/FreeBSD: change location of documentation from /usr/share/veracrypt/doc...Mounir IDRASSI2-4/+4
2019-10-04Linux : Added missing 'mkdir' before installing in case $DESTDIR does not exi...El Mostafa Idrassi1-0/+2
2019-10-02Linux/MacOSX:check that the requested size of file container is less than ava...Mounir IDRASSI4-2/+13
2019-10-02-1/+1
2016-12-26Linux & MacOSX: automatically check TrueCryptMode in password dialog when sel...Mounir IDRASSI4-0/+24
2016-12-26MacOSX: Make VeraCrypt default handler of .hc and .tc files on OSX and add cu...Mounir IDRASSI1-0/+1
2016-11-28Document --truecrypt optionPaul Nijjar1-0/+5
ss="p">; len = strlen((const char *)ctx->fname) + 10; if (*temp == NULL) { if ((*temp = malloc(sizeof(char) * len)) == NULL) { zip_error_set(&ctx->error, ZIP_ER_MEMORY, 0); return INVALID_HANDLE_VALUE; } } if (sprintf((char *)*temp, "%s.%08x", (const char *)ctx->fname, value) != len - 1) { return INVALID_HANDLE_VALUE; } return CreateFileA((const char *)*temp, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, sa, CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_TEMPORARY, NULL); } static int _win32_rename_temp_a(_zip_source_win32_read_file_t *ctx) { if (!MoveFileExA(ctx->tmpname, ctx->fname, MOVEFILE_REPLACE_EXISTING)) return -1; return 0; } static int _win32_remove_a(const void *fname) { DeleteFileA((const char *)fname); return 0; }