Age | Commit message (Expand) | Author | Files | Lines |
2017-11-27 | SIMD speed optimization for Kuznyechik cipher implementation (up to 2x speedu... | Mounir IDRASSI | 6 | -166/+9755 |
2017-07-19 | Windows MBR bootloader: reduce required stack size for cascade bootloader by ... | Mounir IDRASSI | 1 | -0/+2 |
2017-07-19 | Windows MBR Bootloader: workaround for 16-bit compiler internal error when co... | Mounir IDRASSI | 1 | -4/+4 |
2017-07-09 | Windows: generate pdb files for binaries in order to help investigate crashes... | Mounir IDRASSI | 1 | -4/+2 |
2017-07-09 | Remove unnecessary code from Camellia assembly implementation that checks for... | Mounir IDRASSI | 2 | -71/+10 |
2017-07-09 | Windows: preserve volatile registers XMM6-XMM15 in 64-bit assembly of Camellia. | Mounir IDRASSI | 1 | -512/+51 |
2017-07-04 | Windows: correctly handle SEH exceptions during self-tests in order to disabl... | Mounir IDRASSI | 2 | -30/+41 |
2017-07-04 | Don't check for SSSE3 to use 64-bit SHA-512 assembly code since it uses only ... | Mounir IDRASSI | 1 | -0/+4 |
2017-07-04 | Windows Driver: correctly save and restore extended processor state when perf... | Mounir IDRASSI | 2 | -9/+27 |
2017-07-04 | Windows: use stack instead of MMX register to save registers in 64-bit assemb... | Mounir IDRASSI | 1 | -14/+19 |
2017-07-02 | Linux/MacOSX: align workspace stack variable in WhirlpoolTransform SSE code. | Mounir IDRASSI | 1 | -1/+1 |
2017-07-02 | Avoid alignement issues with some old compilers by using movdqu instead of mo... | Mounir IDRASSI | 1 | -8/+8 |
2017-07-01 | Fix crash on machines without SSSE3 support in CPU by correctly checking for ... | Mounir IDRASSI | 1 | -1/+1 |
2017-07-01 | For code logic clarity, add check for xgetbv support in CPU before using it. | Mounir IDRASSI | 1 | -1/+1 |
2017-06-27 | Enable AVX assembly instructions only when the OS implements AVX support | Mounir IDRASSI | 1 | -2/+19 |
2017-06-27 | Windows: use yasm define __YASM__ for compatibility with the assembly changes... | Mounir IDRASSI | 2 | -25/+25 |
2017-06-27 | MacOSX: various changes for assembly files build. Don't use 32-bit assembly c... | Mounir IDRASSI | 11 | -25/+19 |
2017-06-24 | Linux/MacOSX: properly declare 64-bit constant integer values to avoid being ... | Mounir IDRASSI | 1 | -28/+28 |
2017-06-23 | Update IDRIX copyright year | Mounir IDRASSI | 2 | -2/+2 |
2017-06-23 | Modify Aes_hw_cpu.asm to use nasm syntax that is compatible with yasm. | Mounir IDRASSI | 1 | -16/+16 |
2017-06-23 | Crypto: Add optimized SHA-512 and SHA-256 assembly implementations for x86_64... | Mounir IDRASSI | 22 | -785/+5190 |
2017-06-21 | Windows: don't use AVX optimized Camellia in EFI bootloader until compatibili... | Mounir IDRASSI | 1 | -1/+4 |
2017-06-21 | Crypto: Add optimized Camellia assembly implementation for x86_64 based on wo... | Mounir IDRASSI | 12 | -12/+2395 |
2017-06-21 | Windows: fix compilation error of assembly files after latest changes on Linux. | Mounir IDRASSI | 2 | -2/+4 |
2017-06-13 | Linux: fix executable stack in resulting binary which was caused by crypto as... | Mounir IDRASSI | 5 | -0/+48 |
2017-06-05 | cland static code analyzer fixes | kavsrf | 1 | -3/+3 |
2017-05-22 | Windows Driver: fix "__chkstk" link error in debug build caused by some crypt... | Mounir IDRASSI | 3 | -4/+14 |
2017-01-12 | Fix build error in Crypto/Whirpool.c when using LLVM Clang compiler by disabl... | Mounir IDRASSI | 3 | -33/+45 |
2016-12-26 | Windows: Enable Twofish optimized 64-bit assembly for UEFI bootloader since a... | Mounir IDRASSI | 2 | -6/+6 |
2016-12-07 | Windows: Don't use Twofish x64 assembly implementation for UEFI bootloader (f... | Mounir IDRASSI | 2 | -7/+7 |
2016-12-07 | Windows Bootloader: fix compilation error following Twofish code changes. | Mounir IDRASSI | 1 | -3/+1 |
2016-12-07 | Crypto: remove unnecessary alignment adjusting code in Serpent since the SIMD... | Mounir IDRASSI | 1 | -46/+2 |
2016-12-07 | Crypto: Add optimized Twofish assembly implementation for x86_64. | Mounir IDRASSI | 8 | -421/+993 |
2016-10-17 | Implement detection of new CPU features: AVX2 and BMI2 | Mounir IDRASSI | 2 | -1/+7 |
2016-10-17 | Optimize performance of Twofish C implementation. | Mounir IDRASSI | 2 | -95/+463 |
2016-10-17 | Add missing fast Serpent implementation sources. | Mounir IDRASSI | 4 | -0/+1121 |
2016-10-17 | Crypto: Use SIMD optimized Serpent implementation from Botan. 2.5x speed gain... | Mounir IDRASSI | 5 | -9/+64 |
2016-10-17 | Use properly aligned memory in code using Streebog hash implementation that u... | Mounir IDRASSI | 2 | -2/+3 |
2016-10-17 | Add test vectors for Kuznyechik and GOST89 (the later is deprecated) | Mounir IDRASSI | 2 | -24/+20 |
2016-10-17 | Crypto: remove specific PBKDF2 optimization for block index encoding (except ... | Mounir IDRASSI | 1 | -0/+1 |
2016-10-17 | GOST89 parameters swap (6.3) | kavsrf | 2 | -87/+90 |
2016-08-17 | MacOSX: fix compiler warning about ALIGN macro being already defined | Mounir IDRASSI | 2 | -16/+16 |
2016-08-17 | Linux: fix compilation error on Streebog.c if SSE4.1 not enabled in compiler | Mounir IDRASSI | 2 | -2/+10 |
2016-08-17 | Linux: fix various compilation issues under Linux. | Mounir IDRASSI | 10 | -2321/+2349 |
2016-08-16 | Fix compilation error in Streebog code caused by latest changes. | Mounir IDRASSI | 2 | -2/+2 |
2016-08-16 | Windows: Fix various issues detected by static analysis. | Mounir IDRASSI | 4 | -19/+19 |
2016-08-15 | Windows: Add new crypto files to legacy VC++ 2008 project. | Mounir IDRASSI | 1 | -0/+62 |
2016-08-15 | Windows EFI Bootloader: modifications to prepare EFI system encryption suppor... | Alex | 7 | -33/+53 |
2016-08-15 | Windows: Add support for Streebog (hash) and kuznyechik (encryption) | Mounir IDRASSI | 7 | -0/+4923 |
2016-08-15 | Windows: Add Magma cipher (GOST-89) | Mounir IDRASSI | 8 | -1/+839 |