diff --git a/dotnet/WhiteRabbit/Program.cs b/dotnet/WhiteRabbit/Program.cs index bc8d603..a9e400d 100644 --- a/dotnet/WhiteRabbit/Program.cs +++ b/dotnet/WhiteRabbit/Program.cs @@ -45,13 +45,11 @@ Console.WriteLine("Only 64-bit systems are supported due to MD5Digest optimizations"); } - var expectedHashesAsVectors = ConfigurationManager.AppSettings["ExpectedHashes"] + var expectedHashesFirstComponents = ConfigurationManager.AppSettings["ExpectedHashes"] .Split(',') - .Select(hash => new Vector(HexadecimalStringToUnsignedIntArray(hash))) + .Select(hash => HexadecimalStringToUnsignedIntArray(hash)[0]) .ToArray(); - var expectedHashesFirstComponents = expectedHashesAsVectors.Select(vector => vector[0]).ToArray(); - var processor = new StringsProcessor( Encoding.ASCII.GetBytes(sourcePhrase), maxWordsInPhrase,