<Multi-platform InputStream Alternative in Kotlin?...
# stackoverflow
u
Multi-platform InputStream Alternative in Kotlin? I’m looking for a multi-platform alternative to input streams. My concrete task is to fetch an encrypted file from a remote server via https and decrypt it on demand. In Java land I would an implement InputStream which proxies the reads to the input stream from the https library. How can I do the same in kotlin targeting multiple platforms. I see ktor returns an <a...