gpt4 book ai didi

c# - 在 C# 中禁用客户端证书信任

转载 作者:太空宇宙 更新时间:2023-11-03 16:49:39 25 4
gpt4 key购买 nike

在 C# 中是否可以通过编程方式禁用客户端应用程序的证书信任?

最佳答案

您可以使用 X509Certificate Class

也许X509Certificate2 Class

例子;

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

}

}

关于c# - 在 C# 中禁用客户端证书信任,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4507878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com