Package net.timewalker.ffmq3.utils.md5

Examples of net.timewalker.ffmq3.utils.md5.MD5.update()


{
  public void testMD5() throws Exception
  {
    MD5 md5 = new MD5();
   
    md5.update("foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar".getBytes());
    byte[] result = md5.digest();
   
    System.out.println(StringTools.asHex(result));
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.