public static char[] Encode(byte[] value, int bitsToEncode) { return(Pow2Base.Encode(6, Encode, value, bitsToEncode)); }
public static byte[] Decode(IEnumerable <char> value, int bitsToDecode) { return(Pow2Base.Decode(6, Decode, value, bitsToDecode)); }
public static char[] Encode(byte[] value) { return(Pow2Base.Encode(6, Encode, value)); }
public static byte[] Decode(char[] value) { return(Pow2Base.Decode(6, Decode, value)); }