Пример #1
0
 public void VerifyHashTest()
 {
     HashAlgorithm HashAlgorithm = null; // TODO: Initialize to an appropriate value
     int theSaltLength = 0; // TODO: Initialize to an appropriate value
     Hash target = new Hash(HashAlgorithm, theSaltLength); // TODO: Initialize to an appropriate value
     byte[] Data = null; // TODO: Initialize to an appropriate value
     byte[] Hash = null; // TODO: Initialize to an appropriate value
     byte[] Salt = null; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.VerifyHash(Data, Hash, Salt);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }