All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.katerinapetrova.mpplib.Base64.kt Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package io.github.katerinapetrova.mpplib

interface Base64Encoder {
    fun encode(src: ByteArray): ByteArray
    fun encodeToString(src: ByteArray): String {
        val encoded = encode(src)
        return buildString(encoded.size) {
            encoded.forEach { append(it.toChar()) }
        }
    }
}

expect object Base64Factory {
    fun createEncoder(): Base64Encoder
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy