diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-15 23:14:42 (GMT) |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-15 23:17:59 (GMT) |
commit | c27461572ca09705c16f26a1e9128ff3a4ebdda0 (patch) | |
tree | 41eff1e362c745d21e0cf90cb7d276dfb3cfff66 /src/Mount/Mount.h | |
parent | 634916230311eed9c6969aa516f4b9601438f9d3 (diff) | |
download | VeraCrypt-c27461572ca09705c16f26a1e9128ff3a4ebdda0.zip VeraCrypt-c27461572ca09705c16f26a1e9128ff3a4ebdda0.tar.gz |
Windows: Enhance performance by implementing the possibility to choose the correct hash algorithm of volumes during various operations (mount, change password...). In case of system encryption, slightly speedup Windows startup time by making the driver pickup the correct hash algorithm used for the encryption.
Diffstat (limited to 'src/Mount/Mount.h')
-rw-r--r-- | src/Mount/Mount.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Mount/Mount.h b/src/Mount/Mount.h index f0f5885..e982de8 100644 --- a/src/Mount/Mount.h +++ b/src/Mount/Mount.h @@ -48,6 +48,11 @@ typedef struct BOOL bHidVolDamagePrevReported[26];
} VOLUME_NOTIFICATIONS_LIST;
+typedef struct
+{
+ Password *password;
+ int* pkcs5;
+} PasswordDlgParam;
extern VOLUME_NOTIFICATIONS_LIST VolumeNotificationsList;
|