Compatibility fix for AVX2 CPUs

master
Inga 🏳‍🌈 7 years ago
parent 8552a17b21
commit bb6275672f
  1. 6
      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<uint>(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,

Loading…
Cancel
Save