欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MD5j技术加密

程序员文章站 2022-07-27 20:29:07
package cn.zhangli.basic.util;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;public class MD5Utils { /** * MD5技术加密 工具类 * @param context */ public static String encrypByMd5(String context) {...
package cn.zhangli.basic.util;

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class MD5Utils {

    /**
     * MD5技术加密 工具类
     * @param context
     */
    public static String encrypByMd5(String context) {
        try {  
            MessageDigest md = MessageDigest.getInstance("MD5");
            md.update(context.getBytes());//update处理  
            byte [] encryContext = md.digest();//调用该方法完成计算  
  
            int i;  
            StringBuffer buf = new StringBuffer("");  
            for (int offset = 0; offset < encryContext.length; offset++) {//做相应的转化(十六进制)  
                i = encryContext[offset];  
                if (i < 0) i += 256;  
                if (i < 16) buf.append("0");  
                buf.append(Integer.toHexString(i));  
           }  
            return buf.toString();
        } catch (NoSuchAlgorithmException e) {
            // TODO Auto-generated catch block  
            e.printStackTrace();
            return  null;
        }  
    }

    /**
     * 测试
     * @param args
     */
    public static void main(String[] args) {
        //设置密码
        String password = "123456";
        //加密
        //1 生成随机盐值
        String salt = StrUtils.getComplexRandomString(32);
        //2 通过这个盐值加密
        String newPassword = MD5Utils.encrypByMd5(password + salt);
        System.out.println(newPassword);

        //密码比对
        //1 查询盐值-就是salt
        String newSalt=salt;
        //3 加密比对
        String psw="12345";
        String md5 = MD5Utils.encrypByMd5(psw + newSalt);
        if(md5.equals(newPassword)){
            System.out.println("密码相等");
        }else {
            System.out.println("密码不相等");
        }
    }
}

本文地址:https://blog.csdn.net/weixin_50493320/article/details/109801730

相关标签: 工具类 密码学