Implements certificate support for host algorithm.
Inheritance: HostAlgorithm
 [Ignore] // placeholder for actual test
 public void DataTest()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     CertificateHostAlgorithm target = new CertificateHostAlgorithm(name); // TODO: Initialize to an appropriate value
     byte[] actual;
     actual = target.Data;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 [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.");
 }
 [Ignore] // placeholder
 public void CertificateHostAlgorithmConstructorTest()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     CertificateHostAlgorithm target = new CertificateHostAlgorithm(name);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }