首頁 > 軟體

Java MD5訊息摘要演演算法原理及實現程式碼

2020-09-28 15:02:31

md5 屬於hash演演算法一類,是不可逆的訊息摘要演演算法。與對稱加密和非對稱加密演演算法不一樣,不需要加密金鑰。

注意:

  md5不是加密演演算法,只是將資料進行雜湊計算後生成一個唯一值的演演算法,沒有加密金鑰也沒有解密金鑰。

  下面說的md5加密是指對密碼加密成32位元長度字串的過程

md5可以用於密碼的加密,如123456,加密後的字串,在很大條件下不能被電腦強行破解出來,只能通過字典匹配的方式同樣用md5加密後的字串進行比較破解。

MessageDigest訊息摘要是安全的單向雜湊函數,它將任意大小的字串資料轉換成固定長度的雜湊值。

加密後的字串一般有8位元、16位元,32位元,(64位元好像沒有)這三種長度的字串。

  預設標準加密後直接獲得的就是32位元長度的十六進位制字串

資料加密後返回32位元長度資料

MessageDigest md = MessageDigest.getInstance(String algorithm)

這個方法可以獲得三種加密物件範例

MD5, SHA-1, SHA-256

1、得到MD5演演算法的MessageDigest範例 ,

2、md.update(readEncryptStr.getBytes()) 將要加密的資料轉換為位元組陣列更新到md5物件範例的位元組陣列中儲存起來。

3 、通過執行填充等最終操作來完成雜湊計算。返回加密後的結果,即128位元位元組資料

4、將128位元即16長度位元組資料轉換為16進位制資料輸出總共32長度的字串

Intrger.toHexString(int i)

這個方法是將一個整形轉換為十六進位制的字串,由於int是32位元,而引數是Byte為8位元,需要和十六進位制數OxFF進行與操作將前面24位元,置0處理後再做為方法的引數

得出來的結果是兩個十六進位制數,但如果這個數是小於10的數,方法只會返回一個十六進位制字元,需要前面補一個0,再追加返回結果。

最後輸出的結果就是32個長度的十六進位制字串

/** 
   * MD5 32bit Encrypt Methods. 
   * @param readyEncryptStr ready encrypt string 
   * @return String encrypt result string 
   * @throws NoSuchAlgorithmException 
   * */ 
  public static final String MD5_32bit(String readyEncryptStr) throws NoSuchAlgorithmException{ 
    if(readyEncryptStr != null){ 
      //Get MD5 digest algorithm's MessageDigest's instance. 
      MessageDigest md = MessageDigest.getInstance("MD5"); 
      //Use specified byte update digest. 
      md.update(readyEncryptStr.getBytes()); 
      //Get cipher text 
      byte [] b = md.digest(); 
      //The cipher text converted to hexadecimal string 
      StringBuilder su = new StringBuilder(); 
      //byte array switch hexadecimal number. 
      for(int offset = 0,bLen = b.length; offset < bLen; offset++){ 
        String haxHex = Integer.toHexString(b[offset] & 0xFF); 
        if(haxHex.length() < 2){ 
          su.append("0"); 
        } 
        su.append(haxHex); 
      } 
      return su.toString(); 
    }else{ 
      return null; 
    } 
  }

加密後返回的三種字串長度8位元,16位元,32,位

只知道16位元是通過加密後返回的32位元字串長度處理後的結果,也就是從32位元加密後的字串中間擷取16位元長度作為返回值。

8位元的加密暫時不清楚。

來自百度百科的

java版原始加密演演算法

public class MD5{
  /*
  *四個連結變數
  */
  private final int A=0x67452301;
  private final int B=0xefcdab89;
  private final int C=0x98badcfe;
  private final int D=0x10325476;
  /*
  *ABCD的臨時變數
  */
  private int Atemp,Btemp,Ctemp,Dtemp;
   
  /*
  *常數ti
  *公式:floor(abs(sin(i+1))×(2pow32)
  */
  private final int K[]={
    0xd76aa478,0xe8c7b756,0x242070db,0xc1bdceee,
    0xf57c0faf,0x4787c62a,0xa8304613,0xfd469501,0x698098d8,
    0x8b44f7af,0xffff5bb1,0x895cd7be,0x6b901122,0xfd987193,
    0xa679438e,0x49b40821,0xf61e2562,0xc040b340,0x265e5a51,
    0xe9b6c7aa,0xd62f105d,0x02441453,0xd8a1e681,0xe7d3fbc8,
    0x21e1cde6,0xc33707d6,0xf4d50d87,0x455a14ed,0xa9e3e905,
    0xfcefa3f8,0x676f02d9,0x8d2a4c8a,0xfffa3942,0x8771f681,
    0x6d9d6122,0xfde5380c,0xa4beea44,0x4bdecfa9,0xf6bb4b60,
    0xbebfbc70,0x289b7ec6,0xeaa127fa,0xd4ef3085,0x04881d05,
    0xd9d4d039,0xe6db99e5,0x1fa27cf8,0xc4ac5665,0xf4292244,
    0x432aff97,0xab9423a7,0xfc93a039,0x655b59c3,0x8f0ccc92,
    0xffeff47d,0x85845dd1,0x6fa87e4f,0xfe2ce6e0,0xa3014314,
    0x4e0811a1,0xf7537e82,0xbd3af235,0x2ad7d2bb,0xeb86d391};
  /*
  *向左位移數,計算方法未知
  */
  private final int s[]={7,12,17,22,7,12,17,22,7,12,17,22,7,
    12,17,22,5,9,14,20,5,9,14,20,5,9,14,20,5,9,14,20,
    4,11,16,23,4,11,16,23,4,11,16,23,4,11,16,23,6,10,
    15,21,6,10,15,21,6,10,15,21,6,10,15,21};
   
   
  /*
  *初始化函數
  */
  private void init(){
    Atemp=A;
    Btemp=B;
    Ctemp=C;
    Dtemp=D;
  }
  /*
  *移動一定位數
  */
  private  int  shift(int a,int s){
    return(a<<s)|(a>>>(32-s));//右移的時候,高位一定要補零,而不是補充符號位
  }
  /*
  *主迴圈
  */
  private void MainLoop(int M[]){
    int F,g;
    int a=Atemp;
    int b=Btemp;
    int c=Ctemp;
    int d=Dtemp;
    for(int i = 0; i < 64; i ++){
      if(i<16){
        F=(b&c)|((~b)&d);
        g=i;
      }else if(i<32){
        F=(d&b)|((~d)&c);
        g=(5*i+1)%16;
      }else if(i<48){
        F=b^c^d;
        g=(3*i+5)%16;
      }else{
        F=c^(b|(~d));
        g=(7*i)%16;
      }
      int tmp=d;
      d=c;
      c=b;
      b=b+shift(a+F+K[i]+M[g],s[i]);
      a=tmp;
    }
    Atemp=a+Atemp;
    Btemp=b+Btemp;
    Ctemp=c+Ctemp;
    Dtemp=d+Dtemp;
   
  }
  /*
  *填充函數
  *處理後應滿足bits≡448(mod512),位元組就是bytes≡56(mode64)
  *填充方式為先加一個0,其它位補零
  *最後加上64位元的原來長度
  */
  private int[] add(String str){
    int num=((str.length()+8)/64)+1;//以512位元,64個位元組為一組
    int strByte[]=new int[num*16];//64/4=16,所以有16個整數
    for(int i=0;i<num*16;i++){//全部初始化0
      strByte[i]=0;
    }
    int  i;
    for(i=0;i<str.length();i++){
      strByte[i>>2]|=str.charAt(i)<<((i%4)*8);//一個整數儲存四個位元組,小端序
    }
    strByte[i>>2]|=0x80<<((i%4)*8);//尾部新增1
    /*
    *新增原長度,長度指位的長度,所以要乘8,然後是小端序,所以放在倒數第二個,這裡長度只用了32位元
    */
    strByte[num*16-2]=str.length()*8;
      return strByte;
  }
  /*
  *呼叫函數
  */
  public String getMD5(String source){
    init();
    int strByte[]=add(source);
    for(int i=0;i<strByte.length/16;i++){
    int num[]=new int[16];
    for(int j=0;j<16;j++){
      num[j]=strByte[i*16+j];
    }
    MainLoop(num);
    }
    return changeHex(Atemp)+changeHex(Btemp)+changeHex(Ctemp)+changeHex(Dtemp);
   
  }
  /*
  *整數變成16進位制字串
  */
  private String changeHex(int a){
    String str="";
    for(int i=0;i<4;i++){
      str+=String.format("%2s", Integer.toHexString(((a>>i*8)%(1<<8))&0xff)).replace(' ', '0');
 
    }
    return str;
  }
  /*
  *單例
  */
  private static MD5 instance;
  public static MD5 getInstance(){
    if(instance==null){
      instance=new MD5();
    }
    return instance;
  }
   
  private MD5(){};
   
  public static void main(String[] args){
    String str=MD5.getInstance().getMD5("");
    System.out.println(str);
  }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com