From 54bd81999007b467420acab780c704c91bc1b057 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 17 Jan 2025 00:58:54 +0100 Subject: Windows/Linux/macOS: implement AES hardware support on ARM64 (ARMv8) --- src/ExpandVolume/WinMain.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/ExpandVolume') diff --git a/src/ExpandVolume/WinMain.cpp b/src/ExpandVolume/WinMain.cpp index b7a14662..64fccd55 100644 --- a/src/ExpandVolume/WinMain.cpp +++ b/src/ExpandVolume/WinMain.cpp @@ -1093,7 +1093,11 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, wchar_t *lpsz /* application title */ lpszTitle = L"VeraCrypt Expander"; - DetectX86Features (); +#ifndef _M_ARM64 + DetectX86Features(); +#else + DetectArmFeatures(); +#endif status = DriverAttach (); if (status != 0) -- cgit v1.2.3