博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MD5Utils
阅读量:5901 次
发布时间:2019-06-19

本文共 511 字,大约阅读时间需要 1 分钟。

hot3.png

代码如下

package com.polin.market.util;import java.math.BigInteger;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;public class Md5Utils {	public static String md5(String plainText) {		byte[] secretBytes = null;		try {			secretBytes = MessageDigest.getInstance("md5").digest(plainText.getBytes());		} catch (NoSuchAlgorithmException e) {			throw new RuntimeException("加密失败");		}		return new BigInteger(1, secretBytes).toString(16);	}}

转载于:https://my.oschina.net/bob1900/blog/1523501

你可能感兴趣的文章