encodeBase64

Deprecated

Use `Base64.Default.encode()` from the Kotlin standard library.

Replace with

import kotlin.io.encoding.Base64
Base64.encode(encodeToByteArray())

Encode String in base64 format and UTF-8 character encoding.

Report a problem


Deprecated

Use `Base64.Default.encode()` from the Kotlin standard library.

Replace with

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

Encode ByteArray in base64 format

Report a problem


Deprecated

Use `Base64.Default.encode()` from the Kotlin standard library.

Replace with

import kotlin.io.encoding.Base64
Base64.encode(readByteArray())

Encode ByteReadPacket in base64 format

Report a problem