decodeBase64Bytes

Deprecated

Ambiguous and lenient. Use `Base64.Default.decode()` from the Kotlin standard library.

Replace with

import kotlin.io.encoding.Base64
Base64.decode(this)

Decode String from base64 format

Report a problem


Deprecated

Ambiguous and lenient. Use `Base64.Default.decode()` from the Kotlin standard library.

Replace with

import kotlin.io.encoding.Base64
buildPacket { writeFully(Base64.decode(readByteArray())) }

Decode ByteReadPacket from base64 format

Report a problem