From 806c86bd19245da6baf72d858b7896341400d7d0 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 28 Mar 2018 16:04:06 +0200 Subject: Windows: use the same default value for EFI system encryption password prompt as in the one used in the bootloader. --- src/Common/BootEncryption.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Common/BootEncryption.cpp b/src/Common/BootEncryption.cpp index f0fb414d..55eafb75 100644 --- a/src/Common/BootEncryption.cpp +++ b/src/Common/BootEncryption.cpp @@ -1939,7 +1939,7 @@ namespace VeraCrypt NtQuerySystemInformationFn NtQuerySystemInformationPtr = NULL; EfiBootConf::EfiBootConf() : passwordType (0), - passwordMsg ("Enter Password: "), + passwordMsg ("Password: "), passwordPicture ("login.bmp"), hashMsg ("(0) TEST ALL (1) SHA512 (2) WHIRLPOOL (3) SHA256 (4) RIPEMD160 (5) STREEBOG\nHash: "), hashAlgo (0), @@ -2056,7 +2056,7 @@ namespace VeraCrypt char buffer[1024]; passwordType = ReadConfigInteger (configContent, "PasswordType", 0); - passwordMsg = ReadConfigString (configContent, "PasswordMsg", "Enter password: ", buffer, sizeof (buffer)); + passwordMsg = ReadConfigString (configContent, "PasswordMsg", "Password: ", buffer, sizeof (buffer)); passwordPicture = ReadConfigString (configContent, "PasswordPicture", "\\EFI\\VeraCrypt\\login.bmp", buffer, sizeof (buffer)); //hashMsg = ReadConfigString (configContent, "HashMsg", "(0) TEST ALL (1) SHA512 (2) WHIRLPOOL (3) SHA256 (4) RIPEMD160 (5) STREEBOG\nHash: ", buffer, sizeof (buffer)); hashAlgo = ReadConfigInteger (configContent, "Hash", 0); -- cgit v1.2.3