MD5Util.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.jkcredit.invoice.util;
  2. import java.security.MessageDigest;
  3. /**
  4. * @description:
  5. * @author: sunzhaoning
  6. * @create: 2019-06-24 16:55
  7. * @version: V1.0
  8. **/
  9. public class MD5Util {
  10. public final static String encrypt(String s) {
  11. char[] hexDigits = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
  12. try {
  13. byte[] btInput = s.getBytes();
  14. // 获得MD5摘要算法的 MessageDigest 对象
  15. MessageDigest mdInst = MessageDigest.getInstance("MD5");
  16. // 使用指定的字节更新摘要
  17. mdInst.update(btInput);
  18. // 获得密文
  19. byte[] md = mdInst.digest();
  20. // 把密文转换成十六进制的字符串形式
  21. int j = md.length;
  22. char[] str = new char[j * 2];
  23. int k = 0;
  24. for (int i = 0; i < j; i++) {
  25. byte byte0 = md[i];
  26. str[k++] = hexDigits[byte0 >>> 4 & 0xf];
  27. str[k++] = hexDigits[byte0 & 0xf];
  28. }
  29. return new String(str);
  30. } catch (Exception e) {
  31. return null;
  32. }
  33. }
  34. public static void main(String[] args) {
  35. System.out.println(encrypt("234567"));
  36. }
  37. }