MQTT Integration with custom TLS stack #1632
Unanswered
ashwiniprabhug
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have a custom TLS client implementation in C built directly on OpenSSL.
It fully manages:
I am trying to understand whether this TLS stack can be safely integrated
with an MQTT client in Python (paho-mqtt), or whether the correct design
is to use an MQTT C client instead.
From my understanding:
via Python ssl.SSLContext
custom TLS read/write layer into paho-mqtt
keepalive, and socket lifecycle guarantees
Is this understanding correct?
If custom TLS behavior is required (custom OpenSSL build, cipher control,
handshake logic), is the recommended approach to:
Looking for confirmation from maintainers or guidance on supported designs.
All reactions