Here you can find the source of hash32(String data)
public static int hash32(String data)
//package com.java2s; //License from project: Open Source License public class Main { public static int hash32(String data) { return data.hashCode(); }/*w w w . j a va 2 s .com*/ }