Here you can find the source of calculateHash(byte[] data)
public static int calculateHash(byte[] data)
//package com.java2s; //License from project: Apache License import java.util.Arrays; public class Main { public static int calculateHash(byte[] data) { return Arrays.hashCode(data); }// www. j av a 2 s . c om }