decode

expect open override fun decode(data: ByteArray): ByteArray

Decode the provided data from Base64, returning a raw set of bytes resulting from the decoding operation.

Return

Raw bytes of decoded data.

Parameters

data

Data to decode from Base64.


expect open override fun decode(string: String): ByteArray

Decode the provided string from Base64, returning a raw set of bytes resulting from the decoding operation.

Return

Raw bytes of decoded data.

Parameters

string

String to decode from Base64.

actual open override fun decode(data: ByteArray): ByteArray

Decode the provided data from Base64, returning a raw set of bytes resulting from the decoding operation.

Return

Raw bytes of decoded data.

Parameters

data

Data to decode from Base64.


actual open override fun decode(string: String): ByteArray

Decode the provided string from Base64, returning a raw set of bytes resulting from the decoding operation.

Return

Raw bytes of decoded data.

Parameters

string

String to decode from Base64.