Я работаю над созданием сервера TCP SSL, используя только технологию .NET.
Сначала с помощью примеров потока SSL на здесь был создан код клиент / сервер, затем для создания сертификатов, которые я использовал this (за исключением частирегистрация сетевого сервиса ... не работает)
Начальная связь с сервером SSL работает, но так как мне нужна проверка файлов сертификатов клиент / сервер, я добавил это:
public static bool ValidateServerCertificate(
object sender,
X509Certificate certificate,
X509Chain chain,
SslPolicyErrors sslPolicyErrors)
{
if (sslPolicyErrors == SslPolicyErrors.None)
return true;
// Do not allow this client to communicate with unauthenticated servers.
Console.WriteLine(" > Remote Certificate Error : {0}", sslPolicyErrors);
return false;
}
и это:
public static X509Certificate ValidateClientCertificate(
object sender,
string targetHost,
X509CertificateCollection localCertificates,
X509Certificate remoteCertificate,
string[] acceptableIssuers)
{
Console.WriteLine(" > Client is selecting a local certificate.");
if (acceptableIssuers != null &&
acceptableIssuers.Length > 0 &&
localCertificates != null &&
localCertificates.Count > 0)
{
// Use the first certificate that is from an acceptable issuer.
foreach (X509Certificate certificate in localCertificates)
{
string issuer = certificate.Issuer;
if (Array.IndexOf(acceptableIssuers, issuer) != -1)
return certificate;
}
}
if (localCertificates != null &&
localCertificates.Count > 0)
return localCertificates[0];
return null;
}
на сервере и клиенте.
Создание соединения следующим образом:
SslStream sslStream = new SslStream(
client.GetStream(),
true,
new RemoteCertificateValidationCallback(ValidateServerCertificate),
new LocalCertificateSelectionCallback(ValidateClientCertificate)
);
// The server name must match the name on the server certificate.
try
{
sslStream.AuthenticateAsClient(serverName, CertColection, SslProtocols.Tls, false);
}...(etc)...
и
SslStream flujo = new SslStream(tcpClient.GetStream(), false, new RemoteCertificateValidationCallback(ValidateServerCertificate), new LocalCertificateSelectionCallback(ValidateClientCertificate));
//Código anterior: NetworkStream flujo = tcpClient.GetStream();
//Continúa, intentar autentificar la conexión.
Console.WriteLine(" > Autentificando");
try
{
flujo.AuthenticateAsServer(certificadoServidor, false, SslProtocols.Tls, true);
}...(etc)...
Клиент говорит: «RemoteCertificateNameMismatch» Сервер говорит: «RemoteCertificateNotAvailable»
в соответствующей информации sslPolicyErrors.
Что я делаю неправильно?Какой шаг я пропустил?