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