VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2016-10-17Update user guide.Mounir IDRASSI1-0/+0
2016-10-17Windows: Update driver files of 1.19 releaseMounir IDRASSI2-0/+0
2016-10-17Windows: Update EFI bootloader file from latest VeraCrypt-DCS build.Mounir IDRASSI3-0/+0
2016-10-17Increment version to 1.19 (1.19.4)Mounir IDRASSI11-29/+29
2016-10-17Linux/MacOSX: correctly display Kuznyechik help page when link clicked. Remov...Mounir IDRASSI2-7/+1
2016-10-17MacOSX: Add yasm binaryMounir IDRASSI1-0/+0
2016-10-17Windows: Update signed drivers.Mounir IDRASSI2-0/+0
2016-10-17Implement detection of new CPU features: AVX2 and BMI2Mounir IDRASSI2-1/+7
2016-10-17Optimize performance of Twofish C implementation.Mounir IDRASSI2-95/+463
2016-10-17MacOSX: remove unused variableMounir IDRASSI1-1/+0
2016-10-17Linux/MacOSX: cleaner support for SSE compiler switchesMounir IDRASSI1-2/+20
2016-10-17Update documentation and increment version to 1.19 BETA3 (1.19.3)Mounir IDRASSI11-30/+30
2016-10-17Windows: solve text truncation in keyfiles dialog for some languages.Mounir IDRASSI1-2/+2
2016-10-17Windows: Add latest DCS bootloader binaries built against latest sourcesMounir IDRASSI4-0/+0
2016-10-17-30/+338
2016-10-17Crypto: deprecate GOST89 so that it can't be used to create new volumes. Keep...Mounir IDRASSI2-2/+2
2016-10-17Linux/MacOSX: add missing check for PIM max value on volume creation wizardMounir IDRASSI1-1/+2
2016-10-17Windows Bootloader: for MBR bootloader, reset position pointers to keystroke ...Mounir IDRASSI1-0/+6
2016-10-17Windows Driver: Erase sensitive boot memory before throwing fatal exceptionMounir IDRASSI1-0/+9
2016-10-17Crypto: remove specific PBKDF2 optimization for block index encoding (except ...Mounir IDRASSI2-6/+19
2016-10-17Crypto: clarify PRF code by removing unused parameters in functions hmac_XXX_...Mounir IDRASSI1-39/+31
2016-10-17Crypto: make HMAC-SHA512 code more clear by removing the memory usage optimiz...Mounir IDRASSI1-7/+3
2016-10-17Readme: remove PKCS#11 headers as requirement since they are included in Vera...Mounir IDRASSI1-14/+4
2016-10-17GOST89 parameters swap (6.3)kavsrf2-87/+90
2016-10-17Windows: use zlib compress/uncompress functions directly in the Setup instead...Mounir IDRASSI1-136/+21
2016-10-17Windows: Replace XZip/XUnzip library with zlib and libzip and include the sou...Mounir IDRASSI154-8504/+29709
2016-09-11Windows: in case of In-Place encryption, encrypt random data instead of exist...Mounir IDRASSI6-13/+9
2016-08-21Increment version to 1.19 BETA2 (1.19.2)Mounir IDRASSI11-30/+30
2016-08-21Windows: Update driver files of 1.19 BETA2Mounir IDRASSI2-0/+0
2016-08-21Windows: force the update of rescue disk from version 1.18 because of the fix...Mounir IDRASSI1-1/+1
n; } dst->zip_err = src->zip_err; dst->sys_err = src->sys_err; } void _zip_error_get(const zip_error_t *err, int *zep, int *sep) { if (zep) *zep = err->zip_err; if (sep) { if (zip_error_system_type(err) != ZIP_ET_NONE) *sep = err->sys_err; else *sep = 0; } } void zip_error_set(zip_error_t *err, int ze, int se) { if (err) { err->zip_err = ze; err->sys_err = se; } } void _zip_error_set_from_source(zip_error_t *err, zip_source_t *src) { _zip_error_copy(err, zip_source_error(src)); } zip_int64_t zip_error_to_data(const zip_error_t *error, void *data, zip_uint64_t length) { int *e = (int *)data; if (length < sizeof(int) * 2) { return -1; } e[0] = zip_error_code_zip(error); e[1] = zip_error_code_system(error); return sizeof(int) * 2; }