Examples of HexString


Examples of org.moparscape.msc.gs.util.HexString

   * returns the md5 hash of a string
   */
  public static String md5(String s) {
    md.reset();
    md.update(s.getBytes());
    return new HexString(md.digest()).toString();
  }
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.