mkalex777
mkalex777
you can get this instruction in assembly with ILASM. Just decompile assembly with ILDASM, add the following line into the body of some method and recompile it back with ILASM....
okay. Is it worth to pull request with some minor fixes for old src/crypto/tls version? Does current src/tls implementation supports TLS 1.3? Is it works? Or still under construction? I...
just tried a new code from src/tls folder. At first attempt it works with a simple request with default ClientHello config, but when I replaced default ClientHello config with a...
I needs full control on extensions which are used in the ClientHello, adding or removing something or change sequence is not an option for me. The extension list should comply...
Tried your change, now hash verification has passed. But now it fails at TlsProtocol.CompleteHandshake() here: ``` .SetServerExtensions(m_serverExtensions) .Build(); // fails at the following line, because m_tlsSession==null this.m_tlsSession = TlsUtilities.ImportSession(m_tlsSession.SessionID, m_sessionParameters);...
Just tried with TLS 1.3, also works :) So the last question is where and how to initialize m_tlsSession properly? Am I doing it in the right way?
Some update: I downloaded source code for initial version, build it and replace DLL with older version, now it works :) So, there is need to rollback latest commits to...
tested it with websocket server on node.js (ws). Both protocols ws and wss works good.