public void ExportCertificate() { var cert = Cert.CreateCertificate("MouseRobot", 10); Cert.ExportCertificate(cert, "TestCert", "test"); }
public void ExportCertificateSelfSigned() { var cert = Cert.CreateSelfSignedCertificate("MouseRobot", 10); Cert.ExportCertificate(cert, "TestCertSelfSigned", "test"); }