-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
About the application data transport in Tsl1.0, how to configure the data package? #676
Comments
Link to TLS sample. TLS1 and 1.1 is deprecated and would be cause problems in most modern OS. |
The project required that we must choose tls1.0. Have tried the ssl stream, if we try to send single package, we need to send 0x00 first to occupy a position so that the package will be complete. If not, the first byte of package will be as in second pic and it was taken apart. |
Have you tried to create a byte[] bytes = new byte[29] { 0x00, 0x02, } and try to sent it. |
ValueTask SendAsync(ReadOnlyMemory data); We have tried two methods to send the package, but as shown in wireshark, the first byte will be taken apart. |
I am not sure which layer is removing the null character. |
Should be first layer, but not very clear that how can send the data like first pic and don't show the 0x00. |
Can you check your data that is being sent is in the correct format. |
|
How to configure we could send the package through one application like first pic?
The text was updated successfully, but these errors were encountered: