Disabling certificate validation #757
Unanswered
markhaehnel
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @markhaehnel sorry for the late reply, you can configure tls as follows: TlsConfiguration::SimpleNative {
ca: "...<CA certificate body>...".to_vec(),
client_auth: None,
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
is there currently a way to disable certificate validation on the client using either rustls or native-tls?
I'm connecting to a broker that only serves over tls connection which has a self-signed cert but don't want to add it's cert to my system's cert store.
Thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions