java md2_在Java中的MD2 hash哈希 - Break易站

所述MD2是消息摘要算法。它是由Ronald Rivest于1989年开发的加密哈希函数。它针对8位计算机进行了优化。MD2算法在公钥基础结构中用作MD2和RSA生成的证书的一部分。从2014年开始,此算法现在不被视为安全算法。

要在Java中计算加密散列值,请在java.security包下使用MessageDigest类。

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

MD2

MD5

SHA-1

SHA-224

SHA-256

SHA-384

SHA-512

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

例子:

输入:hello world

输出:d9cce882ee690a5c1ce70beff3a78c77

输入:GeeksForGeeks

输出:787df774a3d25dca997b1f1c8bfee4af

下面的程序显示了Java中MD2 hash哈希的实现。

// 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

应用:

加密

数据的完整性

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值