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


Java SHA-1 Hash用法及代碼示例


SHA-1或安全哈希算法1是一種加密哈希函數,它接受輸入並產生一個160位(20字節)的哈希值。此哈希值稱為消息摘要。然後,通常將此消息摘要呈現為40位長的十六進製數字。它是美國聯邦信息處理標準,由美國國家安全局設計。

自2005年以來,SHA-1現在被認為是不安全的。到2017年,微軟,穀歌,蘋果和Mozilla等主要的技術巨頭瀏覽器已停止接受SHA-1 SSL證書。

要在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:2aae6c35c94fcfb415dbe95f408b9ce91ee846ed

Input:GeeksForGeeks
Output:addf120b430021c36c232c99ef8d926aea2acd6b

下麵的程序顯示了Java中SHA-1哈希的實現。

// Java program to calculate SHA-1 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 SHA-1 
            MessageDigest md = MessageDigest.getInstance("SHA-1"); 
  
            // 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 SHA-1 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 SHA-1 for:

GeeksForGeeks:addf120b430021c36c232c99ef8d926aea2acd6b

hello world:2aae6c35c94fcfb415dbe95f408b9ce91ee846ed

應用:

  • 密碼學
  • 數據的完整性


相關用法


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