-
Is this syntaxis ok? SecurityProtocols=1 I would like the client negotiate with some lower/older sslv3 with the proxy. Is this ok? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Partially correct. This option configures SSL/TLS versions which WebOne will use to connect to remote servers. The option is set by "OR" operation over .NET internal IDs of TLS versions:
|
Beta Was this translation helpful? Give feedback.
-
Oh, so it does not has nothing to do with client-proxy connection, right? I have an ancient IRC client that has the option of using HTTP proxy, so i tried Webone on it, but it did not worked. The IRC client has SSL option, i think SSLv3 but i'm not sure if it would work with Webone. |
Beta Was this translation helpful? Give feedback.
Partially correct.
This option configures SSL/TLS versions which WebOne will use to connect to remote servers. The option is set by "OR" operation over .NET internal IDs of TLS versions:
SecurityProtocols=1
is not seems to be known by .NET Runtime, butSecurityProtocols=0
is SystemDefault (and it is equal to 4032 on pre-Windows 10 systems, and to result of192 | 768 | 3…