wm_bky

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

       /**

   * 使用md5的算法进行加密

   */

  public static String md5(String plainText) {

  byte[] secretBytes = null;

  try {

  secretBytes = MessageDigest.getInstance("md5").digest(

  plainText.getBytes());

  } catch (NoSuchAlgorithmException e) {

  throw new RuntimeException("没有md5这个算法!");

  }

  String md5code = new BigInteger(1, secretBytes).toString(16);

  for (int i = 0; i < 32 - md5code.length(); i++) {

  md5code = "0" + md5code;

  }

  return md5code;

  }

posted on 2016-11-10 10:21  wm_bky  阅读(99)  评论(0编辑  收藏  举报