How should I define a hashCode for a class having 3 byte[]?
public class Key implements Comparable<Key> {
private static final long serialVersionUID = 1L;
private byte[] subKey1;
private byte[] subKey2;
private byte[] subKey3;
public int hashCode() {
}
}