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

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

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