kencode/com.eignex.kencode/ByteEncoding ByteEncoding interface ByteEncoding(source)Abstraction for bidirectional byte–text encodings (e.g., Base62, Base64).InheritorsBase64Base85BaseRadix Members Functions decode Link copied to clipboard abstract fun decode(input: CharSequence): ByteArrayDecode an encoded string back into the original bytes. encode Link copied to clipboard abstract fun encode(input: ByteArray, offset: Int = 0, length: Int = input.size - offset): StringEncode the given byte range into a text representation. 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.