Here you can find the source of XOR(int res, String key)
public static int XOR(int res, String key)
//package com.java2s; public class Main { public static int XOR(int res, String key) { return res ^ key.hashCode(); }/*from ww w.j av a2 s . c om*/ }