Java 中的 SHA-512 哈希

原文:https://www.geeksforgeeks.org/sha-512-hash-in-java/

SHA-2 密码散列函数家族由六个散列函数组成。这些是:

  1. SHA-224,具有 224 位哈希值
  2. SHA-256,具有 256 位哈希值
  3. SHA-384,384 位哈希值
  4. SHA-512,512 位哈希值
  5. SHA-512/224,具有 512 位哈希值
  6. SHA-512/256, with 512 bit hash values

    其中,SHA-256 和 SHA-512 是最普遍接受和使用的散列函数,分别用 32 位和 64 位字计算。SHA-224 和 SHA-384 分别是 SHA-256 和 SHA-512 的截断版本,用不同的初始值计算。

    为了计算 Java 中的加密散列值,使用了包 java.security 下的消息摘要类

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

    • MD2
    • 讯息摘要 5
    • SHA-1
    • SHA-224
    • SHA-256
    • SHA-384
    • SHA-512

    这些算法在名为 getInstance() 的静态方法中初始化。选择算法后,计算消息摘要值,并将结果作为字节数组返回。使用 BigInteger 类,将结果字节数组转换为它的符号表示。然后,该表示被转换为十六进制格式,以获得预期的消息摘要。

    示例:

    输入 : hello world 输出:309 ECC 489 c12d 6 EB 4cc 40f 902 F2 f4d 0 和 77ee 511 7a 7a 9bcd 3ca 86 CD4 f 989 DD 35 BC 5 ff 49670 da 34255 b 45 B0 CFD 830 e 81 f 605 DCF 7 DC 5542 e 93 AE 9

    输入 : GeeksForGeeks 输出:ACC 10c 4 e 0b 38617 f 59 e 88 e 4925 e 894 afae 5 EC 948 c 2 af 6 f 44903 f 039 f 9 Fe 47 a 9210 e 01d 5 CD 926 c 142 BDC 9179 c 2 ad 30 f 927 a 8 f 69421

    程序:下面的程序展示了 SHA-512 哈希函数的实现:

    ```java // Java program to calculate SHA-512 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-512             MessageDigest md = MessageDigest.getInstance("SHA-512");

    // 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-512 for: ");

    String s1 = "GeeksForGeeks";         System.out.println("\n" + s1 + " : " + encryptThisString(s1));

    String s2 = "hello world";         System.out.println("\n" + s2 + " : " + encryptThisString(s2));     } } ```

    Output:

    ```java HashCode Generated by SHA-512 for:

    GeeksForGeeks : acc10c4e0b38617f59e88e49215e2e894afaee5 ec948c2af6f44039f03c9fe47a9210e01d5cd926c142bdc9179c2ad 30f927a8faf69421ff60a5eaddcf8cb9c

    hello world : 309ecc489c12d6eb4cc40f50c902f2b4d0ed77ee5 11a7c7a9bcd3ca86d4cd86f989dd35bc5ff499670da34255b45b0cf d830e81f605dcf7dc5542e93ae9cd76f

    ```

    应用:

    • 密码系统
    • 数据完整性