Here you can find the source of bytesEqual(byte[] a1, byte[] a2)
public static boolean bytesEqual(byte[] a1, byte[] a2)
//package com.java2s; //License from project: Apache License public class Main { public static boolean bytesEqual(byte[] a1, byte[] a2) { int i;/*w ww. ja va2 s .c o m*/ if (a1.length != a2.length) { return false; } for (i = 0; i < a1.length; i++) { if (a1[i] != a2[i]) { return false; } } return true; } }