From 9ccb8a97afe66516b02da88b0997cc0d944a1010 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 24 Apr 2015 22:56:42 +0200 Subject: Linux: in command line, support hash algorithm names without '-' as on Windows ("sha256", "sha512", "ripemd160") --- src/Main/CommandLineInterface.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/Main/CommandLineInterface.cpp') diff --git a/src/Main/CommandLineInterface.cpp b/src/Main/CommandLineInterface.cpp index 82a99e7f..541f66d0 100644 --- a/src/Main/CommandLineInterface.cpp +++ b/src/Main/CommandLineInterface.cpp @@ -307,7 +307,9 @@ namespace VeraCrypt foreach (shared_ptr hash, Hash::GetAvailableAlgorithms()) { - if (wxString (hash->GetName()).IsSameAs (str, false)) + wxString hashName (hash->GetName()); + wxString hashAltName (hash->GetAltName()); + if (hashName.IsSameAs (str, false) || hashAltName.IsSameAs (str, false)) ArgHash = hash; } @@ -321,7 +323,9 @@ namespace VeraCrypt foreach (shared_ptr hash, Hash::GetAvailableAlgorithms()) { - if (wxString (hash->GetName()).IsSameAs (str, false)) + wxString hashName (hash->GetName()); + wxString hashAltName (hash->GetAltName()); + if (hashName.IsSameAs (str, false) || hashAltName.IsSameAs (str, false)) ArgCurrentHash = hash; } @@ -405,7 +409,9 @@ namespace VeraCrypt bool bHashFound = false; foreach (shared_ptr hash, Hash::GetAvailableAlgorithms()) { - if (wxString (hash->GetName()).IsSameAs (str, false)) + wxString hashName (hash->GetName()); + wxString hashAltName (hash->GetAltName()); + if (hashName.IsSameAs (str, false) || hashAltName.IsSameAs (str, false)) { bHashFound = true; ArgMountOptions.ProtectionKdf = Pkcs5Kdf::GetAlgorithm (*hash, ArgTrueCryptMode); -- cgit v1.2.3