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

Windows: support RAM encryption only if t1ha2 algorithm self test succeeds

This commit is contained in:
Mounir IDRASSI
2020-06-20 18:02:45 +02:00
parent 0121dc0b81
commit e97114e7a0

View File

@@ -1243,7 +1243,10 @@ BOOL IsCpuRngEnabled ()
BOOL IsRamEncryptionSupported ()
{
#ifdef _WIN64
return TRUE;
if (t1ha_selfcheck__t1ha2() == 0)
return TRUE;
else
return FALSE;
#else
return FALSE;
#endif