kencode/com.eignex.kencode/Base64 Base64 open class Base64(val alphabet: CharArray) : ByteEncoding(source)RFC 4648–compatible Base64 encoder/decoder.InheritorsBase64UrlDefault Members Constructors Base64 Link copied to clipboard constructor(alphabet: CharArray) Types Default Link copied to clipboard object Default : Base64Default Base64 instance using the standard BASE_64 alphabet. Properties alphabet Link copied to clipboard val alphabet: CharArrayThe 64-character alphabet used to map 6-bit groups to characters. Functions decode Link copied to clipboard open override fun decode(input: CharSequence): ByteArrayDecode an encoded string back into the original bytes. encode Link copied to clipboard open override fun encode(input: ByteArray, offset: Int = 0, length: Int = input.size - offset): StringEncode the given byte range into a text representation. Base64 constructor(alphabet: CharArray)(source) alphabet val alphabet: CharArray(source) decode open override fun decode(input: CharSequence): ByteArray(source)Decode an encoded string back into the original bytes. encode open override fun encode(input: ByteArray, offset: Int = 0, length: Int = input.size - offset): String(source)Encode the given byte range into a text representation.