Java使用MD5加密例子

xiaoxiao2021-02-28  77

package com.itheima.utils; import java.math.BigInteger; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class MD5Utils { /** * 使用md5的算法进行加密(具体根据需求) * * author:humf */ public static String md5(String plainText) { byte[] secretBytes = null; try { secretBytes = MessageDigest.getInstance("md5").digest( plainText.getBytes()); } catch (NoSuchAlgorithmException e) { throw new RuntimeException("没有md5这个算法!"); } String md5code = new BigInteger(1, secretBytes).toString(16);// 16进制数字 // 如果生成数字未满32位,需要前面补0 for (int i = 0; i < 32 - md5code.length(); i++) { md5code = "0" + md5code; } return md5code; } public static void main(String[] args) { System.out.println(md5("123")); } } 御前提笔小书童 认证博客专家 全栈 大数据 魔法师 喜时不诺,怒时不争,哀时不语,倦时有终;静以修身,俭以养德;----------------------御前提笔小书童
转载请注明原文地址: https://www.6miu.com/read-55740.html

最新回复(0)