Here you can find the source of md5Init()
private static void md5Init()
//package com.java2s; public class Main { private static long[] state = new long[4]; private static long[] count = new long[2]; private static void md5Init() { count[0] = 0L;/*from www. j a v a 2 s .c o m*/ count[1] = 0L; // /* Load magic initialization constants. state[0] = 0x67452301L; state[1] = 0xefcdab89L; state[2] = 0x98badcfeL; state[3] = 0x10325476L; return; } }