Package org.moparscape.msc.gs.util

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

Related Classes of org.moparscape.msc.gs.util.HexString

Copyright © 2018 www.massapicom. 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.