com.eignex.kencode/ByteEncoding ByteEncoding interface ByteEncoding(source)Abstraction for bidirectional byte–text encodings (e.g., Base62, Base64).InheritorsBase64Base85BaseRadix Functions decode abstract fun decode(input: CharSequence): ByteArray(source)Decode an encoded string back into the original bytes. encode abstract fun encode(input: ByteArray, offset: Int = 0, length: Int = input.size - offset): String(source)Encode the given byte range into a text representation.