1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Crypto: Use SIMD optimized Serpent implementation from Botan. 2.5x speed gain factor. Update credits and copyrights notice.

This commit is contained in:
Mounir IDRASSI
2016-10-04 13:21:48 +02:00
parent 7ff3c5d108
commit e5a9e9239b
21 changed files with 285 additions and 26 deletions

View File

@@ -193,7 +193,11 @@ typedef struct
#endif
#include "Aes_hw_cpu.h"
#include "Serpent.h"
#if !defined (TC_WINDOWS_BOOT)
# include "SerpentFast.h"
#else
# include "Serpent.h"
#endif
#include "Twofish.h"
#include "Rmd160.h"