mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 11:08:02 -06:00
Windows driver: call VcProtectKeys only when RAM encryption enabled although this function does nothing when RAM encryption is disabled.
This commit is contained in:
@@ -645,8 +645,11 @@ static NTSTATUS MountDrive (DriveFilterExtension *Extension, Password *password,
|
|||||||
|
|
||||||
/* encrypt keys */
|
/* encrypt keys */
|
||||||
#ifdef _WIN64
|
#ifdef _WIN64
|
||||||
VcProtectKeys (Extension->HeaderCryptoInfo, VcGetEncryptionID (Extension->HeaderCryptoInfo));
|
if (IsRamEncryptionEnabled())
|
||||||
VcProtectKeys (Extension->Queue.CryptoInfo, VcGetEncryptionID (Extension->Queue.CryptoInfo));
|
{
|
||||||
|
VcProtectKeys (Extension->HeaderCryptoInfo, VcGetEncryptionID (Extension->HeaderCryptoInfo));
|
||||||
|
VcProtectKeys (Extension->Queue.CryptoInfo, VcGetEncryptionID (Extension->Queue.CryptoInfo));
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
status = EncryptedIoQueueStart (&Extension->Queue);
|
status = EncryptedIoQueueStart (&Extension->Queue);
|
||||||
|
|||||||
Reference in New Issue
Block a user