I've published kotlin-base32 - a tiny Kotlin Multi...
# feed
l
I've published kotlin-base32 - a tiny Kotlin Multiplatform just for base32 en- and decoding. The library closely follows the patterns established by
Base64
from the stdlib, and, if the Kotlin team expresses interest in Base32 in the stdlib, I would be happy to contribute. For now, you can check it out on GitHub! If you have interest in base32 in the stdlib, I also recommend to leave feedback at on KT-67333.
K 4
e
Question - no extension functions?
l
No, this following the API pattern established by https://kotlinlang.org/api/core/kotlin-stdlib/kotlin.io.encoding/-base64/. As far as I know, there are no extension functions provided by this API either (with the exception of stream processing on the JVM; which I didn't implement yet).
👍🏼 1
e
Clear! I felt it would be convenient to have them.