I have two java byte[] arrays which are of unknown length and I simply want to add one to the end of the other. ie:
byte[] ciphertext = blah;
byte[] mac = blah;
byte[] out = ciphertext + mac;
I have tried using arraycopy but cant seem to get it to work. any help would be much appreciated
thanks