decode

abstract fun decode(data: ByteArray): ByteArray

Decode: Bytes to Bytes

Decode the provided data, returning the raw resulting bytes.

Return

Decoded data.

Parameters

data

Data to decode.


abstract fun decode(string: String): ByteArray

Decode: String to Bytes

Decode the provided string, returning the raw resulting bytes.

Return

Decoded data.

Parameters

string

String to decode.