gpt4 book ai didi

java - 安卓小端MD5

转载 作者:太空狗 更新时间:2023-10-29 13:36:59 24 4
gpt4 key购买 nike

我正在将一个 Windows 应用程序移植到 Android,但我遇到了字节顺序问题。该应用程序从用户那里获取一系列文本字段,并根据 MD5 生成密码。问题是当我创建字节数组以传递到 MD5 摘要方法时,Android 应用程序上的字节采用大端格式。因此,MD5 输出在两个平台之间不匹配。

我试过使用 ByteBuffer 转换为小端,然后使用 ByteBuffer.get() 将该值复制回字节数组。遗憾的是,这不起作用,因为它不维护顺序设置。这似乎是处理 ByteBuffers 时已知的“陷阱”。如果我将 ByteBuffer.getLong() 值与 Windows 版本中的等效值进行比较,则值匹配,但我不知道如何以正确的顺序从 ByteBuffer 中取出数组。

编辑:我在下面附加了 java 和 C# 函数。

以下是不尝试修复顺序/字节顺序的 java 版本:

public static final long md5(final String input) {
try {
// Create MD5
MessageDigest md5 = MessageDigest.getInstance("MD5");

// Read in string as an array of bytes.
byte[] originalBytes = input.getBytes("US-ASCII");
byte[] encodedBytes = md5.digest(originalBytes);

long output = 0;
long multiplier = 1;

// Create 64 bit integer from the MD5 hash of the input
for (int i = 0; i < encodedBytes.length; i++) {
output = output + encodedBytes[i] * multiplier;
multiplier = multiplier * 255;
}
return output;

}
catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return 0;
}

这是C#版本

private Int64 MD5(string input)
{
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();

byte[] originalBytes = ASCIIEncoding.ASCII.GetBytes(input);
byte[] encodedBytes = md5.ComputeHash(originalBytes);
Int64 output = 0;
Int64 Multiplyer = 1;
for (int i = 0; i < encodedBytes.Length; i++)
{
output = output + encodedBytes[i] * Multiplyer;
Multiplyer = Multiplyer * 255;
}
return output;
}

最佳答案

问题是这行Java:

            output = output + encodedBytes[i] * multiplier;

与这行 C# 代码略有不同:

    output = output + encodedBytes[i] * Multiplyer;

具体来说,encodedBytes[i]bytelong (Java) 或Int64 的隐式转换(C#) 有点不同。

你看,在 Java 中,bytesigned 值,介于 -128127 之间,而在 C# 中,它是一个介于 0255 之间的unsigned 值。因此,例如,如果 encodedBytes[i]B2 (1011 0010),则 Java 将其解释为 -78,而 C# 将其解释为为 178。

要在 Java 中模拟 C# 解释,您可以编写如下内容:

            output = output + ((encodedBytes[i] + 256) % 256) * multiplier;

(幸运的是,Java 对整数溢出的处理方式与 C# 的“未检查”模式相同,这显然是您正在使用的模式;如果您不得不模拟的话,会更加棘手.)

关于java - 安卓小端MD5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9557365/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com