Отключить доверие сертификата клиента в C # - PullRequest
2 голосов
/ 22 декабря 2010

Есть ли программный способ отключить доверие сертификатов клиентского приложения в C #?

1 Ответ

0 голосов
/ 22 декабря 2010

Вы можете использовать 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);

    }

}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...