博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CryptographyUtil盐加密
阅读量:5243 次
发布时间:2019-06-14

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

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"));    }}

 

转载于:https://www.cnblogs.com/duanwandao/p/9534624.html

你可能感兴趣的文章
【洛谷P1816 忠诚】线段树
查看>>
电子眼抓拍大解密
查看>>
poj 1331 Multiply
查看>>
tomcat7的数据库连接池tomcatjdbc的25个优势
查看>>
Html 小插件5 百度搜索代码2
查看>>
P1107 最大整数
查看>>
监控CPU和内存的使用
查看>>
Ubuntu14.04设置开机自启动程序
查看>>
多进程与多线程的区别
查看>>
Ubuntu(虚拟机)下安装Qt5.5.1
查看>>
java.io.IOException: read failed, socket might closed or timeout, read ret: -1
查看>>
java 常用命令
查看>>
CodeForces Round #545 Div.2
查看>>
卷积中的参数
查看>>
51nod1076 (边双连通)
查看>>
Item 9: Avoid Conversion Operators in Your APIs(Effective C#)
查看>>
学习Spring Boot:(二十八)Spring Security 权限认证
查看>>
深入浅出JavaScript(2)—ECMAScript
查看>>
STEP2——《数据分析:企业的贤内助》重点摘要笔记(六)——数据描述
查看>>
ViewPager的onPageChangeListener里面的一些方法参数:
查看>>