Here you can find the source of decrypt(byte[] serialize)
public static byte[] decrypt(byte[] serialize)
//package com.java2s; //License from project: Apache License public class Main { public static byte[] decrypt(byte[] serialize) { return encrypt(serialize); }/*w ww. j a v a2s. c o m*/ public static byte[] encrypt(byte[] serialize) { for (int i = 0; i < serialize.length; i++) { // serialize[i] = shiftBits(serialize[i]); serialize[i] = (byte) (serialize[i] ^ 3629); } return serialize; } }