1. 程式人生 > 實用技巧 >MessageDigest的功能及用法(加密解密) SHA _ MD5

MessageDigest的功能及用法(加密解密) SHA _ MD5

MessageDigest的功能及用法(加密解密)

MessageDigest 加密和解密2

MessageDigest的功能及用法 MessageDigest 類為應用程式提供資訊摘要演算法的功能,如 MD5 或 SHA 演算法。資訊摘要是安全的單向雜湊函式,它接收任意大小的資料,並輸出固定長度的雜湊值。 MessageDigest 物件開始被初始化。該物件通過使用 update()方法處理資料。任何時候都可以呼叫 reset()方法重置摘要。一旦所有需要更新的資料都已經被更新了,應該呼叫digest() 方法之一完成雜湊計算。 對於給定數量的更新資料,digest 方法只能被呼叫一次。在呼叫 digest 之後,MessageDigest 物件被重新設定成其初始狀態。
1、publicstaticMessageDigest getInstance(String algorithm) throws NoSuchAlgorithmException 返回實現指定摘要演算法的 MessageDigest 物件。 algorithm - 所請求演算法的名稱 2、publicstaticMessageDigest getInstance(String algorithm, String provider) throws NoSuchAlgorithmException, NoSuchProviderException 返回實現指定摘要演算法的 MessageDigest 物件。
algorithm - 所請求演算法的名稱 provider - 提供者的名稱。 3、publicvoidupdate(byte[] input) 使用指定的byte陣列更新摘要。 4、publicbyte[] digest() 通過執行諸如填充之類的最終操作完成雜湊計算。在呼叫此方法之後,摘要被重置。 5、publicstaticboolean isEqual(byte[] digesta, byte[] digestb) 比較兩個摘要的相等性。做簡單的位元組比較。 注意:Provider可以通過 Java.security.Security.getProviders() 方法獲取已註冊提供者列表。比較常用的有“SUN”
SUN提供的常用的演算法名稱有:MD2 MD5 SHA-1 SHA-256 SHA-384 SHA-512 Code舉例: import java.security.*; publicclassmyDigest { publicstaticvoidmain(String[] args) { myDigest my=newmyDigest(); my.testDigest(); } publicvoidtestDigest() { try{ String myinfo="我的測試資訊"; //java.security.MessageDigest alg=java.security.MessageDigest.getInstance("MD5"); java.security.MessageDigest alga=java.security.MessageDigest.getInstance("SHA-1"); alga.update(myinfo.getBytes()); byte[] digesta=alga.digest(); System.out.println("本資訊摘要是:"+byte2hex(digesta)); //通過某中方式傳給其他人你的資訊(myinfo)和摘要(digesta) 對方可以判斷是否更改或傳輸正常 java.security.MessageDigest algb=java.security.MessageDigest.getInstance("SHA-1"); algb.update(myinfo.getBytes()); if(algb.isEqual(digesta,algb.digest())) { System.out.println("資訊檢查正常"); } else { System.out.println("摘要不相同"); } } catch(java.security.NoSuchAlgorithmException ex) { System.out.println("非法摘要演算法"); } } publicString byte2hex(byte[] b)//二行制轉字串 { String hs=""; String stmp=""; for(intn=0;n<b.length;n++) { stmp=(java.lang.Integer.toHexString(b[n] & 0XFF)); if(stmp.length()==1) hs=hs+"0"+stmp; elsehs=hs+stmp; if(n<b.length-1) hs=hs+":"; } returnhs.toUpperCase(); } }

  

«上一篇:js編寫時間選擇框
»下一篇:MessageDigest 加密和解密2 ________________________________________________________________________________________________________

Java MD5Utils

目錄

Java MD5Utils

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 /** * <html> * <body> * <P> Copyright 1994 JsonInternational</p> * <p> All rights reserved.</p> * <p> Created on 19941115</p> * <p> Created by Jason</p> * </body> * </html> */ packagecn.ucaner.alpaca.framework.utils.encrypt; importjava.math.BigInteger; importjava.security.MessageDigest; importjava.security.NoSuchAlgorithmException; importorg.apache.commons.lang3.StringUtils; /** * @Package:cn.ucaner.alpaca.framework.utils.encrypt * @ClassName:MD5Utils * @Description: <p> MD5加密工具 By Jason </p> * @Author: - Jason * @CreatTime:2018年5月24日 下午9:40:31 * @Modify By: * @ModifyTime: 2018年5月24日 * @Modify marker: * @version V1.0 */ classMD5Utils { protectedfinalstaticString MD5_KEY ="MD5"; protectedfinalstaticString SHA_KEY ="SHA1"; /** * @param value * @param key * @return */ protectedstaticString encrypt(String value,String key) { try{ // 拿到一個MD5轉換器(如果想要SHA1引數換成”SHA1”) MessageDigest messageDigest = MessageDigest.getInstance(key); // 輸入的字串轉換成位元組陣列 byte[] inputByteArray = value.getBytes(); // inputByteArray是輸入字串轉換得到的位元組陣列 messageDigest.update(inputByteArray); // 轉換並返回結果,也是位元組陣列,包含16個元素 byte[] resultByteArray = messageDigest.digest(); // 字元陣列轉換成字串返回 returnbyteArrayToHex(resultByteArray); }catch(NoSuchAlgorithmException e) { returnnull; } } /** * 位元組陣列轉換為hex * @param byteArray * @return */ privatestaticString byteArrayToHex(byte[] byteArray) { // 首先初始化一個字元陣列,用來存放每個16進位制字元 char[] hexDigits = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; // new一個字元陣列,這個就是用來組成結果字串的(解釋一下:一個byte是八位二進位制,也就是2位十六進位制字元(2的8次方等於16的2次方)) char[] resultCharArray =newchar[byteArray.length *2]; // 遍歷位元組陣列,通過位運算(位運算效率高),轉換成字元放到字元陣列中去 intindex =0; for(byteb : byteArray) { resultCharArray[index++] = hexDigits[b >>>4&0xf]; resultCharArray[index++] = hexDigits[b &0xf]; } // 字元陣列組合成字串返回 returnnewString(resultCharArray); } /** * 獲得16位的加密字元 * @param str * @return * @throws NoSuchAlgorithmException */ publicstaticString getMd5String16(String str)throwsNoSuchAlgorithmException { String md5str = getMd5String32(str).substring(8); returnmd5str.substring(0, md5str.length() -8); } /** * 獲得24位的MD5加密字元 * @param str * @return * @throws NoSuchAlgorithmException */ publicstaticString getMd5String24(String str)throwsNoSuchAlgorithmException { String md5str = getMd5String32(str).substring(4); returnmd5str.substring(0, md5str.length() -4); } /** * 獲得32位的MD5加密演算法 * @param str * @return * @throws NoSuchAlgorithmException */ publicstaticString getMd5String32(String str)throwsNoSuchAlgorithmException { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(str.getBytes()); byteb[] = md.digest(); inti; StringBuffer buf =newStringBuffer(); for(intoffset =0; offset < b.length; offset++) { i = b[offset]; if(i <0) i +=256; if(i <16) buf.append("0"); buf.append(Integer.toHexString(i)); } returnbuf.toString(); } /** * 獲取MD5密碼 * @param password * @param salt * @return * @throws NoSuchAlgorithmException */ publicstaticString getMD5Pwd(String password, String salt)throwsNoSuchAlgorithmException { String result =null; if(StringUtils.isNotBlank(salt)) { result = getMD5(getMD5(password) + salt); }else{ result = getMD5(password); } returnresult; } /** * 獲取MD5加密資料 * @param input * @return * @throws NoSuchAlgorithmException */ publicstaticString getMD5(String input)throwsNoSuchAlgorithmException { String result = input; if(input !=null) { MessageDigest md = MessageDigest.getInstance("MD5");//or "SHA-1" md.update(input.getBytes()); BigInteger hash =newBigInteger(1, md.digest()); result = hash.toString(16); while(result.length() <32) {//40 for SHA-1 result ="0"+ result; } } returnresult; } /** * For test by Jason */ publicstaticvoidmain(String[] args) { try{ System.out.println(getMd5String16("Jason"));//829018f9dbd65fb8 }catch(NoSuchAlgorithmException e) { e.printStackTrace(); } } }

  

分類:JavaUtils «上一篇:Java Base64Utils
»下一篇:Java 獲取客服端ip地址