Does anyone know of a Kotlin-native SSL implementation? In my case it’s needed for a raw tcp socket (for which I’m using ktor’s library). I did some searching in this channel but everything seems to be cinterop over OpenSSL
Ryder Huggins
02/01/2024, 1:28 PM
Follow up - if there’s no K/N SSL implementation, does anyone have a sample of using cinterop with a TCP socket?
m
Mats-Hjalmar
02/01/2024, 2:49 PM
Im unsure what you try to acomplish but i would fork ktor websocket and modify that if i want a lower level abstraction.
r
Ryder Huggins
02/01/2024, 10:18 PM
I’m working on a K/N Postgres driver. Connections can be made over plain TCP or TCP with SSL.
Thanks for your recommendation, I’ll give it a look