diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-02 14:45:22 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-04 13:14:05 +0200 |
commit | b261177b8f5bc3f8495406d13dc03c0328b930f9 (patch) | |
tree | 535b8a6345c63529b3bc72f42d02c27c6aed64e3 /src/Common/Password.h | |
parent | 0b914c8f5d690dfc1bdfbca1e1083372c5ed84d8 (diff) | |
download | VeraCrypt-b261177b8f5bc3f8495406d13dc03c0328b930f9.tar.gz VeraCrypt-b261177b8f5bc3f8495406d13dc03c0328b930f9.zip |
Windows/Linux/MacOSX: Set maximum PIM value to 2147468 in order to avoid having negative values for iterations count using the formula 15000 + (PIM x 1000). Add specific error message to XML language files.
Diffstat (limited to 'src/Common/Password.h')
-rw-r--r-- | src/Common/Password.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Common/Password.h b/src/Common/Password.h index c6d1579b..e2058cdb 100644 --- a/src/Common/Password.h +++ b/src/Common/Password.h @@ -17,7 +17,8 @@ // User text input limits
#define MIN_PASSWORD 1 // Minimum possible password length
#define MAX_PASSWORD 64 // Maximum possible password length
-#define MAX_PIM 10 // Maximum allowed digits in a PIM (enough for 32-bit value)
+#define MAX_PIM 7 // Maximum allowed digits in a PIM (enough for maximum value)
+#define MAX_PIM_VALUE 2147468 // Maximum value to have a positive 32-bit result for formula 15000 + (PIM x 1000)
#define MAX_BOOT_PIM 5 // Maximum allowed digits in a PIM for boot (enough for 16-bit value)
#define MAX_BOOT_PIM_VALUE 65535
|