Ejemplo n.º 1
0
        public void ExportCertificate()
        {
            var cert = Cert.CreateCertificate("MouseRobot", 10);

            Cert.ExportCertificate(cert, "TestCert", "test");
        }
Ejemplo n.º 2
0
        public void ExportCertificateSelfSigned()
        {
            var cert = Cert.CreateSelfSignedCertificate("MouseRobot", 10);

            Cert.ExportCertificate(cert, "TestCertSelfSigned", "test");
        }