TwoThreeXorByte.java 245 B

1234567891011121314151617
  1. package struct;
  2. public class TwoThreeXorByte {
  3. public byte[] CE;
  4. public byte[] DE;
  5. public byte[] CD;
  6. public TwoThreeXorByte() {
  7. }
  8. public TwoThreeXorByte(int len) {
  9. CE = new byte[len];
  10. DE = new byte[len];
  11. CD = new byte[len];
  12. }
  13. }