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

Crypto: Workaround for AES-NI issue under Hyper-V on Windows Server 2008 R2 which masks AES-NI from applications although it is available.

This commit is contained in:
Mounir IDRASSI
2016-07-24 23:39:33 +02:00
parent 2dbf366184
commit 0fca588275
3 changed files with 66 additions and 3 deletions

View File

@@ -3,6 +3,10 @@
#include "config.h"
#include <string.h> // for memcpy and memmove
#ifndef _WIN32
#include <strings.h> // for strcasecmp
#define _stricmp strcasecmp
#endif
#ifdef _MSC_VER
#if _MSC_VER >= 1400