package com.infendro.encoding interface Encoding { fun encode(bytes: ByteArray): ByteArray fun decode(bytes: ByteArray): ByteArray }