mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-24 03:53:29 +01:00
Windows: support RAM encryption only if t1ha2 algorithm self test succeeds
This commit is contained in:
parent
0121dc0b81
commit
e97114e7a0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user