decodeBase64String

Deprecated

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

Replace with

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

Decode String from base64 format encoded in UTF-8.

Report a problem