All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.wx.common.mp.aes.ByteGroup Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
package org.frameworkset.wx.common.mp.aes;

import java.util.ArrayList;

class ByteGroup {
	ArrayList byteContainer = new ArrayList();

	public byte[] toBytes() {
		byte[] bytes = new byte[byteContainer.size()];
		for (int i = 0; i < byteContainer.size(); i++) {
			bytes[i] = byteContainer.get(i);
		}
		return bytes;
	}

	public ByteGroup addBytes(byte[] bytes) {
		for (byte b : bytes) {
			byteContainer.add(b);
		}
		return this;
	}

	public int size() {
		return byteContainer.size();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy