-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSL 2.0 with mdTlsNative as server, web browser as client gets no response back #39
Comments
I just realized this question of yours in another thread is actually quite relevant i.e. by default native backend uses After commit 7d20880 in the default case of |
Another caveat w/ For the native backend to support TLS 1.1 and TLS 1.2 when using default
After switching off Unfortunately TLS 1.2 is still missing w/ self-signed certificates. |
Yet another caveat w/ But native backend still uses old Schannel API when no TLS 1.3 is requested (or OS does not support new Schannel API) so on Win10+ requesting Using this exact combined setting for
|
Thanks for commit 7d20880 Now SSL 2.0 work as server native on Windows XP x86 SP3. And if TLS 1.3 server is need on Windows XP, mdTlsThunks makes it work. |
Hi,
Tried to test SSL 2.0 with TlsSocket(compiled with mdTlsNative).
Don't think I'll find SSL 2.0 on anything used today but fun testing it if it works :).
Server: Windows XP SP2 x86.
Client: Windows 2003 SP2 x64 Internet Explorer 6 with TLS 1.0 and SSL 3.0 disabled(=only SSL 2.0 enabled).
Wireshark on Server shows that the Server gets a SSL 2.0 Client Hello but does not respond(only TCP ACK is sent back).
Testing the same as above but with SSL 3.0 enabled on Client works.
Also with TLS 1.0 enabled on Client Works.
Also tested Internet Explorer 6 on the Server to try to access TlsSocket on 127.0.0.1 but no response and I'm unable see anything local with WireShark.
Any hints on were to start to try to find the problem?
The text was updated successfully, but these errors were encountered: