VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Driver/Ntdriver.h
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2022-02-06 09:34:32 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2022-02-06 09:52:24 +0100
commitc51a209879107a0331c293087122e1c6e884b32d (patch)
treefa4ade1f09694048fb08bf64ac91f1e1be4e9d47 /src/Driver/Ntdriver.h
parent6f3fc5b9e37a22d1c14ff8208a37a30d3a7c867d (diff)
downloadVeraCrypt-c51a209879107a0331c293087122e1c6e884b32d.tar.gz
VeraCrypt-c51a209879107a0331c293087122e1c6e884b32d.zip
Windows: Add registry setting to disable erasing encryption keys on Windows shutdown/reboot. This helps solve BSOD during shutdown/reboot on some machines.
Under "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\veracrypt", create a REG_DWORD value named "VeraCryptEraseKeysShutdown" and set its value to 0.
Diffstat (limited to 'src/Driver/Ntdriver.h')
-rw-r--r--src/Driver/Ntdriver.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Driver/Ntdriver.h b/src/Driver/Ntdriver.h
index b7e2d56e..3bbeb457 100644
--- a/src/Driver/Ntdriver.h
+++ b/src/Driver/Ntdriver.h
@@ -128,6 +128,7 @@ extern BOOL AllowWindowsDefrag;
extern int EncryptionIoRequestCount;
extern int EncryptionItemCount;
extern int EncryptionFragmentSize;
+extern BOOL EraseKeysOnShutdown;
/* Helper macro returning x seconds in units of 100 nanoseconds */
#define WAIT_SECONDS(x) ((x)*10000000)