shiro自带的md5加密工具

import org.apache.shiro.crypto.hash.Md5Hash;


public class CryptoUtil{

    //需要传入两个参数,第一个是密码,第二个是盐
	public static String md5(String str,String salt){
		return new Md5Hash(str,salt).toString();
	}
	
	public static void main(String[] args) {
		String password="123456";		
		System.out.println("Md5加密:"+CryptoUtil.md5(password, "hello_world"));
	}
}

利用shiro带的工具比较方便,用java自带的包相对麻烦。

你可能感兴趣的:(JAVA)