SHA-1 哈希
SHA-1 或安全散列算法 1 是一种加密散列函数,它接受输入并产生 160 位(20 字节)散列值。此哈希值称为消息摘要。然后,此消息摘要通常会呈现为 40 位长的十六进制数字。它是美国联邦信息处理标准,由美国国家安全局设计。
自 2005 年以来,SHA-1 现在被认为是不安全的。到 2017 年,微软、谷歌、苹果和 Mozilla 等主要科技巨头浏览器已停止接受 SHA-1 SSL 证书。
为了在Java中计算加密哈希值,使用了Java.security包下的MessageDigest 类。
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
下面的程序显示了 SHA-1 哈希在Java中的实现。
// 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
应用:
- 密码学
- 数据的完整性