本文提供了基于MD5加密16位和32位的方法,具體內(nèi)容如下
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序定制開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了沁水免費(fèi)建站歡迎大家使用!
import java.io.IOException; import java.math.BigInteger; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; /** *標(biāo)題:編碼工具類
*功能:對數(shù)據(jù)進(jìn)行編碼轉(zhuǎn)換
* 作者:趙力 */ public class EncodeUtil { public static void main(String[] args) throws Exception { System.out.println(md5Encrypt16("需要進(jìn)行MD5加密的字符串")); } /** * MD5加密16位 * @param encryptStr 要加密數(shù)據(jù) * @return 返回16位加密結(jié)果 * ZhaoLi */ public static String md5Encrypt16(String encryptStr) { return md5Encrypt32(encryptStr).substring(8, 24); } /** * MD5加密32位 * @param encryptStr 要加密數(shù)據(jù) * @return 32位加密結(jié)果 * ZhaoLi */ public static String md5Encrypt32(String encryptStr) { MessageDigest md5; try { md5 = MessageDigest.getInstance("MD5"); byte[] md5Bytes = md5.digest(encryptStr.getBytes()); StringBuffer hexValue = new StringBuffer(); for (int i = 0; i < md5Bytes.length; i++) { int val = (md5Bytes[i]) & 0xff; if (val < 16) { hexValue.append("0"); } hexValue.append(Integer.toHexString(val)); } return hexValue.toString().toLowerCase(); } catch (Exception e) { throw new RuntimeException(e); } } /** * 結(jié)合base64實(shí)現(xiàn)md5加密 * @param msg 待加密字符串 * @return 獲取md5后轉(zhuǎn)為base64 * @throws Exception */ public static String md5EncryptBase64(String msg) throws Exception { return msg == null ? null : base64Encode(md5(msg)); } /** * 將byte[]轉(zhuǎn)為各種進(jìn)制的字符串 * @param bytes byte[] * @param radix 可以轉(zhuǎn)換進(jìn)制的范圍,從Character.MIN_RADIX到Character.MAX_RADIX,超出范圍后變?yōu)?0進(jìn)制 * @return 轉(zhuǎn)換后的字符串 */ public static String binary(byte[] bytes, int radix) { return new BigInteger(1, bytes).toString(radix);// 這里的1代表正數(shù) } /** * base 64 encode * @param bytes 待編碼的byte[] * @return 編碼后的base 64 code */ public static String base64Encode(byte[] bytes) { return new BASE64Encoder().encode(bytes); } /** * base 64 decode * @param base64Code 待解碼的base 64 code * @return 解碼后的byte[] * @throws Exception */ public static byte[] base64Decode(String base64Code) { try { return base64Code == null ? null : new BASE64Decoder().decodeBuffer(base64Code); } catch (IOException e) { throw new RuntimeException("報錯內(nèi)容", e); } } /** * 獲取byte[]的md5值 * @param bytes byte[] * @return md5 * @throws Exception */ public static byte[] md5(byte[] bytes) { MessageDigest md; try { md = MessageDigest.getInstance("MD5"); } catch (NoSuchAlgorithmException e) { throw new RuntimeException("報錯內(nèi)容", e); } md.update(bytes); return md.digest(); } /** * 獲取字符串md5值 * @param msg * @return md5 * @throws Exception */ public static byte[] md5(String msg) { return msg == null ? null : md5(msg.getBytes()); } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。