码迷,mamicode.com
首页 > 其他好文 > 详细

CryptographyUtil盐加密

时间:2018-08-25 18:46:07      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:public   工具   color   oid   apache   print   auth   rap   import   

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盐加密

标签:public   工具   color   oid   apache   print   auth   rap   import   

原文地址:https://www.cnblogs.com/duanwandao/p/9534624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!