-
Notifications
You must be signed in to change notification settings - Fork 16
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
Enable/Disable in secure #54
Comments
Is the server using a self-signed certificate? You could probably also get away with using a correct Not verifying the certificate puts you at risk of someone possibly redirecting the traffic to a malicious server so it pretty much depends if you are willing to take that risk (e.g. probably fine for a personal project or operating in a private network) or not |
We don't really expose the esp-mbedtls/esp-mbedtls/src/lib.rs Lines 363 to 372 in f292457
If you provide any |
I am building an MQTT program over TLS. But there is a problem that this library does not support enabling or disabling In secure (Terminology of a feature on MQTTx). Our MQTT certificate does not require domain validation so I get error -9984 right from the tls connection.
To solve the problem, I have to do it manually by clearing the result of the domain validation process:
Is this correct for bypassing domain validation and is there another way?
The text was updated successfully, but these errors were encountered: