package com.infendro.encoding object Base2 : Encoding() { private val CHARACTERS = ubyteArrayOf( 0x30U, 0x31U, ) override fun encode( bytes: UByteArray, ) = encode(bytes, CHARACTERS) override fun decode( bytes: UByteArray, ) = decode(bytes, CHARACTERS) }