[
https://issues.apache.org/jira/browse/IGNITE-15915?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Amelchev Nikita updated IGNITE-15915:
-------------------------------------
Fix Version/s: (was: 2.13)
> .NET thin: SSL keystore shouldn't be a mandatory parameter
> ----------------------------------------------------------
>
> Key: IGNITE-15915
> URL: https://issues.apache.org/jira/browse/IGNITE-15915
> Project: Ignite
> Issue Type: Bug
> Components: platforms
> Affects Versions: 2.5
> Reporter: Stanislav Lukyanov
> Assignee: Pavel Tupitsyn
> Priority: Major
> Labels: .NET
> Fix For: 2.12
>
> Time Spent: 20m
> Remaining Estimate: 0h
>
> Currently, SslStreamFactory can't be configured without specifying
> client-side certificates.
> This shouldn't be the case - SSL can be used without any certificates on the
> client.
> Workaround:
> {code}
> class SimpleSslStreamFactory : ISslStreamFactory {
> public SslStream Create(Stream stream, string targetHost)
> {
> var sslStream = new SslStream(stream, false, null, null);
> sslStream.AuthenticateAsClient(targetHost);
> return sslStream;
> }
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)