java实现md5加密

2022/7/31 14:24:35

本文主要是介绍java实现md5加密,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

前言

md5加密是不可逆的

一、jdk实现md5加密

package com.example.baidu;

import org.junit.Test;

import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;

public class M大JdkTest {

    @Test
    public void test() throws Exception {
        String str = "银河系的极光";
        // 定义编码
        String algorithm = "MD5";
        // 获取消息摘要算法对象
        MessageDigest md = MessageDigest.getInstance(algorithm);

        // 获取原始内容的字节数组
        byte[] originalBytes = str.getBytes(StandardCharsets.UTF_8);

        // 获取摘要结果
        byte[] digestBytes = md.digest(originalBytes);
        // 当originalBytes比较大的时候,循环进行update
        /*md.update(originalBytes);
        md.digest();*/

        // 把每一个字节转换为16进制字节,最后再将它们拼接起来
        String hexStr = convertBytes2HexStr(originalBytes);
        System.out.printf("hexStr: " + hexStr);

    }

    private String convertBytes2HexStr(byte[] originalBytes) {
        StringBuffer sb = new StringBuffer();
        for (byte bt : originalBytes) {
            // 获取b补码后的八位
            String hex = Integer.toHexString(((int)bt)&0xff);
            if (hex.length() == 1) {
                hex = "0" + hex;
            }
            sb.append(hex);
        }
        return sb.toString();
    }

}

 



这篇关于java实现md5加密的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程