日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

MD5SHA加密util类(Java)

發布時間:2025/5/22 54 豆豆
生活随笔 收集整理的這篇文章主要介紹了 MD5SHA加密util类(Java) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

為什么80%的碼農都做不了架構師?>>> ??

package com.arui.util; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class EncryptUtils {/*** Encrypt string using MD5 algorithm*/public final static String encryptMD5(String source) {if (source == null) {source = "";}String result = "";try {result = encrypt(source, "MD5");} catch (NoSuchAlgorithmException ex) {// this should never happenthrow new RuntimeException(ex);}return result;}/*** Encrypt string using SHA algorithm*/public final static String encryptSHA(String source) {if (source == null) {source = "";}String result = "";try {result = encrypt(source, "SHA");} catch (NoSuchAlgorithmException ex) {// this should never happenthrow new RuntimeException(ex);}return result;}/*** Encrypt string*/private final static String encrypt(String source, String algorithm)throws NoSuchAlgorithmException {byte[] resByteArray = encrypt(source.getBytes(), algorithm);return toHexString(resByteArray);}/*** Encrypt byte array.*/private final static byte[] encrypt(byte[] source, String algorithm)throws NoSuchAlgorithmException {MessageDigest md = MessageDigest.getInstance(algorithm);md.reset();md.update(source);return md.digest();}/*** Get hex string from byte array*/private final static String toHexString(byte[] res) {StringBuffer sb = new StringBuffer(res.length << 1);for (int i = 0; i < res.length; i++) {String digit = Integer.toHexString(0xFF & res[i]);if (digit.length() == 1) {digit = '0' + digit;}sb.append(digit);}return sb.toString().toUpperCase();} }?


原文鏈接: http://blog.csdn.net/arui319/article/details/5771804

轉載于:https://my.oschina.net/liux/blog/50452

總結

以上是生活随笔為你收集整理的MD5SHA加密util类(Java)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。