VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common
AgeCommit message (Expand)AuthorFilesLines
2018-09-03Increment version to 1.23-BETA8 and update release notes.Mounir IDRASSI1-2/+2
2018-09-03Windows: handle case of inconsistencies in EFI system partition content durin...Mounir IDRASSI1-5/+32
2018-09-03Windows: fix regression when language selected in the setup during fresh inst...Mounir IDRASSI2-8/+10
2018-09-03Windows: Don't include DcsBml.efi file in resources if custom configuration n...Mounir IDRASSI1-0/+4
2018-09-03Increment version to 1.23-BETA7 and update release notes.Mounir IDRASSI1-3/+3
2018-09-03Windows: add define to support case of using EFI bootloader signed by Microso...Mounir IDRASSI1-3/+24
2018-09-01Windows: handle case of some disk drivers not supporting IOCTL_DISK_GET_DRIVE...Mounir IDRASSI2-4/+78
2018-08-24Increment version to 1.23-BETA6Mounir IDRASSI1-2/+2
2018-08-24Windows: implement a driver configuration option to explicitly allow defragme...Mounir IDRASSI2-3/+6
2018-08-24Windows: fix language selected in the installer not used by "Create Volume" w...Mounir IDRASSI1-0/+9
2018-08-24Windows: Add check on size of file container to ensure it's smaller than avai...Mounir IDRASSI1-0/+1
2018-08-18Increment version to 1.23-BETA5 and update release notesMounir IDRASSI1-2/+2
2018-08-16Increment version to 1.23-BETA4 and update release notes.Mounir IDRASSI1-2/+2
2018-08-16Windows: Fix regression that caused the system encryption wizard to crash whe...Mounir IDRASSI1-2/+7
2018-08-15Win
/*
 ---------------------------------------------------------------------------
 Copyrig
7-12/+329
2018-04-23Windows: Fix system encryption issues on machines that always force booting o...Mounir IDRASSI3-6/+132
2018-04-23Windows: enhance ReflectDrivers mechanism by persisting it across major Windo...Mounir IDRASSI2-4/+35
2018-04-23Windows: code refactoringMounir IDRASSI1-15/+10
2018-04-23Windows: remove ending backslash from installation path written to SetupConfi...Mounir IDRASSI1-0/+7
2018-04-23Windows: implement compatibility for Windows 10 major updates using ReflectDr...Mounir IDRASSI6-1/+213
2018-04-23Windows: handle case when parameter of VerifyModuleSignature is enclosed betw...Mounir IDRASSI1-1/+16
2018-04-23Windows: implement internal verification of Authenticode digital signature fo...Mounir IDRASSI2-15/+156
2018-03-30Increment version to 1.22 (1.22.9)Mounir IDRASSI1-2/+2
2018-03-30Simplify format of XML language files to make it easy to integrate in collabo...Mounir IDRASSI2-1430/+1415
2018-03-28Increment version to 1.22-BETA8 (1.22.8)Mounir IDRASSI1-2/+2
2018-03-28Windows: use the same default value for EFI system encryption password prompt...Mounir IDRASSI1-2/+2
2018-03-27Increment version to 1.22-BETA7 (1.22.7)Mounir IDRASSI1-2/+2
2018-03-27Crypto: Add support for 5 new cascades of cipher algorithms (Camellia-Kuznyec...Mounir IDRASSI3-3/+168
2018-03-25Increment version to 1.22-BETA6 (1.22.6)Mounir IDRASSI1-2/+2
2018-03-25Windows: handle rare case where call to SwitchDestop fails when trying to dis...Mounir IDRASSI1-11/+30
2018-03-25Windows: use cleaner approach to implement bringing our windows to foreground...Mounir IDRASSI1-14/+23
2018-03-25Windows: ensure that out secure desktop has always user input to avoid cases ...Mounir IDRASSI1-0/+76
2018-03-22Increment version to 1.22-BETA5 (1.22.5)Mounir IDRASSI1-4/+4
2018-03-20Windows: Fix some cases of external applications freezing during mount/dismou...Mounir IDRASSI1-1/+38
2018-03-20XML Languages files: remove unused entry.Mounir IDRASSI1-1/+0
2018-03-18Update various copyright dates.Mounir IDRASSI1-4/+4
2018-03-18Windows: Update libzip to version 1.5.0 that include fixes for some security ...Mounir IDRASSI118-3477/+4699
encryption. Only 128 and 256 bit keys are supported in these 'on the fly' modes. */ #if defined( AES_ENC_128_OTFK ) void aes_encrypt_128( const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK], const unsigned char key[N_BLOCK], uint_8t o_key[N_BLOCK] ); #endif #if defined( AES_DEC_128_OTFK ) void aes_decrypt_128( const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK], const unsigned char key[N_BLOCK], unsigned char o_key[N_BLOCK] ); #endif #if defined( AES_ENC_256_OTFK ) void aes_encrypt_256( const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK], const unsigned char key[2 * N_BLOCK], unsigned char o_key[2 * N_BLOCK] ); #endif #if defined( AES_DEC_256_OTFK ) void aes_decrypt_256( const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK], const unsigned char key[2 * N_BLOCK], unsigned char o_key[2 * N_BLOCK] ); #endif #if defined(__cplusplus) } #endif #endif