Here you can find the source of encrypt(byte[] data, byte[] key)
public static byte[] encrypt(byte[] data, byte[] key)
//package com.java2s; import java.io.UnsupportedEncodingException; public class Main { private static int DELTA = 0x9e3779c8; public static byte[] encrypt(byte[] data, byte[] key) { if (data.length == 0) { return data; }// w w w. ja v a 2 s . com return toByteArray( encrypt(toIntArray(data, true), toIntArray(fixKey(key), false)), false); } public static byte[] encrypt(String data, byte[] key) { try { return encrypt(data.getBytes("UTF-8"), key); } catch (UnsupportedEncodingException e) { return null; } } public static byte[] encrypt(byte[] data, String key) { try { return encrypt(data, key.getBytes("UTF-8")); } catch (UnsupportedEncodingException e) { return null; } } public static byte[] encrypt(String data, String key) { try { return encrypt(data.getBytes("UTF-8"), key.getBytes("UTF-8")); } catch (UnsupportedEncodingException e) { return null; } } private static int[] encrypt(int[] v, int[] k) { int n = v.length - 1; if (n < 1) { return v; } int p, q = 6 + 52 / (n + 1); int z = v[n], y, sum = 0, e; while (q-- > 0) { sum = sum + DELTA; e = sum >>> 2 & 3; for (p = 0; p < n; p++) { y = v[p + 1]; z = v[p] += MX(sum, y, z, p, e, k); } y = v[0]; z = v[n] += MX(sum, y, z, p, e, k); } return v; } private static byte[] toByteArray(int[] data, boolean includeLength) { int n = data.length << 2; if (includeLength) { int m = data[data.length - 1]; n -= 4; if ((m < n - 3) || (m > n)) { return null; } n = m; } byte[] result = new byte[n]; for (int i = 0; i < n; ++i) { result[i] = (byte) (data[i >>> 2] >>> ((i & 3) << 3)); } return result; } private static int[] toIntArray(byte[] data, boolean includeLength) { int n = (((data.length & 3) == 0) ? (data.length >>> 2) : ((data.length >>> 2) + 1)); int[] result; if (includeLength) { result = new int[n + 1]; result[n] = data.length; } else { result = new int[n]; } n = data.length; for (int i = 0; i < n; ++i) { result[i >>> 2] |= (0x000000ff & data[i]) << ((i & 3) << 3); } return result; } private static byte[] fixKey(byte[] key) { if (key.length == 16) return key; byte[] fixedkey = new byte[16]; if (key.length < 16) { System.arraycopy(key, 0, fixedkey, 0, key.length); } else { System.arraycopy(key, 0, fixedkey, 0, 16); } return fixedkey; } private static int MX(int sum, int y, int z, int p, int e, int[] k) { return (z >>> 5 ^ y << 2) + (y >>> 3 ^ z << 4) ^ (sum ^ y) + (k[p & 3 ^ e] ^ z); } }