當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java MD2 Hash用法及代碼示例


MD2是消息摘要算法。它是Ronald Rivest在1989年開發的一種加密哈希函數。它已針對8位計算機進行了優化。 MD2算法在公鑰基礎結構中用作MD2和RSA生成的證書的一部分。從2014年開始,此算法現在不被視為安全算法。

要在Java中計算加密哈希值,將使用MessageDigest Class(位於包java.security下)。

MessagDigest類提供以下加密哈希函數,以查找文本的哈希值,如下所示:


  • MD2
  • MD5
  • SHA-1
  • SHA-224
  • SHA-256
  • SHA-384
  • SHA-512

這些算法以稱為getInstance()的靜態方法初始化。選擇算法後,將計算消息摘要值,並將結果作為字節數組返回。 BigInteger類用於將結果字節數組轉換為其符號表示。然後將該表示形式轉換為十六進製格式,以獲取預期的MessageDigest。

例子:

Input:hello world
Output:d9cce882ee690a5c1ce70beff3a78c77

Input:GeeksForGeeks
Output:787df774a3d25dca997b1f1c8bfee4af

下麵的程序顯示了Java中MD2哈希的實現。

// Java program to calculate MD2 hash value 
  
import java.math.BigInteger; 
import java.security.MessageDigest; 
import java.security.NoSuchAlgorithmException; 
  
public class GFG { 
    public static String encryptThisString(String input) 
    { 
        try { 
            // getInstance() method is called with algorithm MD2 
            MessageDigest md = MessageDigest.getInstance("MD2"); 
  
            // digest() method is called 
            // to calculate message digest of the input string 
            // returned as array of byte 
            byte[] messageDigest = md.digest(input.getBytes()); 
  
            // Convert byte array into signum representation 
            BigInteger no = new BigInteger(1, messageDigest); 
  
            // Convert message digest into hex value 
            String hashtext = no.toString(16); 
  
            // Add preceding 0s to make it 32 bit 
            while (hashtext.length() < 32) { 
                hashtext = "0" + hashtext; 
            } 
  
            // return the HashText 
            return hashtext; 
        } 
  
        // For specifying wrong message digest algorithms 
        catch (NoSuchAlgorithmException e) { 
            throw new RuntimeException(e); 
        } 
    } 
  
    // Driver code 
    public static void main(String args[]) throws
                                       NoSuchAlgorithmException 
    { 
        System.out.println("HashCode Generated by MD2 for:"); 
  
        String s1 = "GeeksForGeeks"; 
        System.out.println("\n" + s1 + ":" + encryptThisString(s1)); 
  
        String s2 = "hello world"; 
        System.out.println("\n" + s2 + ":" + encryptThisString(s2)); 
    } 
}

輸出

HashCode Generated by MD2 for:

GeeksForGeeks:787df774a3d25dca997b1f1c8bfee4af

hello world:d9cce882ee690a5c1ce70beff3a78c77

應用:

  • 密碼學
  • 數據的完整性


相關用法


注:本文由純淨天空篩選整理自RishabhPrabhu大神的英文原創作品 MD2 Hash In Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。