LabVIEW-Open-Source / MQTT-Client

A LabVIEW-based client for MQTT
Other
27 stars 4 forks source link

TLS support #21

Closed T81 closed 1 year ago

T81 commented 1 year ago

Is there support for secure connections using a ca certificate under LabVIEW 2019?

francois-normandin commented 1 year ago

No there is not. LabVIEW did not natively support TLS before version 2020.

But it is possible to provide support by writing an extension with .net calls, based on the model of this project:

https://github.com/LabVIEW-Open-Source/MQTT-Connection-SecuredTCP

Copy the project, rename the libraries, replace the TLS calls in this project with .NET and back save. That would technically provide TLS support all the way back to 2013.

T81 commented 1 year ago

How about LabVIEW 2022?

francois-normandin commented 1 year ago

Yes, the package mentioned above will work for LabVIEW 2020 and above.