CryptographyUtil盐加密
Posted duanwandao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CryptographyUtil盐加密相关的知识,希望对你有一定的参考价值。
import org.apache.shiro.crypto.hash.Md5Hash; /** * 加密工具 * @author Administrator * */ public class CryptographyUtil { /** * Md5加密 * @param str * @param salt * @return */ 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加密:"+CryptographyUtil.md5(password, "java1234")); } }
以上是关于CryptographyUtil盐加密的主要内容,如果未能解决你的问题,请参考以下文章