decodeBase64Bytes
Deprecated
Ambiguous and lenient. Use `Base64.Default.decode()` from the Kotlin standard library.
Replace with
import kotlin.io.encoding.Base64
Content copied to clipboard
Base64.decode(this)Content copied to clipboard
Decode String from base64 format
Deprecated
Ambiguous and lenient. Use `Base64.Default.decode()` from the Kotlin standard library.
Replace with
import kotlin.io.encoding.Base64
Content copied to clipboard
buildPacket { writeFully(Base64.decode(readByteArray())) }Content copied to clipboard
Decode ByteReadPacket from base64 format