码迷,mamicode.com
首页 > 其他好文 > 详细

X509Certificate 类

时间:2019-12-06 19:39:42      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:sof   sys   call   strong   ali   实现   mic   oid   service   

 

地址:https://docs.microsoft.com/zh-cn/dotnet/api/system.security.cryptography.x509certificates.x509certificate?view=netframework-4.8

标题:X509Certificate 类

 

.NET Framework 4.8版,文档。

提供帮助你使用 X.509 v.3 证书的方法。

继承
X509Certificate
派生
属性
实现
 
using System;
using System.Security.Cryptography.X509Certificates;


public class X509
{

    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);

    }

}

 

只有此类支持的唯一证书格式。

在大多数情况下,应该改用 X509Certificate2 类。

 

X509Certificate 类

标签:sof   sys   call   strong   ali   实现   mic   oid   service   

原文地址:https://www.cnblogs.com/Tpf386/p/11996787.html

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