码迷,mamicode.com
首页 > Windows程序 > 详细

C# 使用 X.509 v.3 证书的方法。

时间:2015-06-24 15:53:44      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

C# 使用 X.509 v.3 证书的方法。

 

public static void Main()
    {

        // The path to the certificate.
        string Certificate = "Certificate.cer";

        // Load the certificate into an X509Certificate object.
        X509Certificate cert = new X509Certificate(Certificate);

        // Get the value.
        string resultsTrue = cert.ToString(true);

        // Display the value to the console.
        Console.WriteLine(resultsTrue);

        // Get the value.
        string resultsFalse = cert.ToString(false);

        // Display the value to the console.
        Console.WriteLine(resultsFalse);

    }

C# 使用 X.509 v.3 证书的方法。

标签:

原文地址:http://www.cnblogs.com/DTWolf/p/4597688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!