Sign() public method

Signs the specified data.
public Sign ( byte data ) : byte[]
data byte The data.
return byte[]
 [Ignore] // placeholder for actual test
 public void SignTest()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     CertificateHostAlgorithm target = new CertificateHostAlgorithm(name); // TODO: Initialize to an appropriate value
     byte[] data = null; // TODO: Initialize to an appropriate value
     byte[] expected = null; // TODO: Initialize to an appropriate value
     byte[] actual;
     actual = target.Sign(data);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }