Does anyone know of a Kotlin-native SSL implementa...
# kotlin-native
r
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
Follow up - if there’s no K/N SSL implementation, does anyone have a sample of using cinterop with a TCP socket?
m
Im unsure what you try to acomplish but i would fork ktor websocket and modify that if i want a lower level abstraction.
r
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