MD5 在 Java 中生成 31 个字符的哈希

2022-09-04 19:58:03

我正在使用以下代码块来生成MD5哈希:

public static String encode(String data) throws Exception {

    /* Check the validity of data */
    if (data == null || data.isEmpty()) {
        throw new IllegalArgumentException("Null value provided for "
                + "MD5 Encoding");
    }

    /* Get the instances for a given digest scheme MD5 or SHA */
    MessageDigest m = MessageDigest.getInstance("MD5");

    /* Generate the digest. Pass in the text as bytes, length to the
     * bytes(offset) to be hashed; for full string pass 0 to text.length()
     */
    m.update(data.getBytes(), 0, data.length());

    /* Get the String representation of hash bytes, create a big integer
     * out of bytes then convert it into hex value (16 as input to
     * toString method)
     */
    String digest = new BigInteger(1, m.digest()).toString(16);

    return digest;
}

当我运行上面的代码段时,字符串数据为,输出是一个31个字符的哈希 - 。[12, B006GQIIEM, MH-ANT2000]268d43a823933c9dafaa4ac0e756d6a

MD5哈希函数有问题吗,或者上面的代码有问题吗?


答案 1

代码中的唯一问题是,当 MSB 小于 Ox10 时,结果哈希字符串将只有 31 个字节,而不是 32 个字节,缺少前导零。

以这种方式创建 md5 字符串:

            byte messageDigest[] = m.digest();

            hexString = new StringBuffer();
            for (int i=0;i<messageDigest.length;i++) {
                String hex=Integer.toHexString(0xFF & messageDigest[i]);
                if(hex.length()==1)
                    hexString.append('0');

                hexString.append(hex);
            }

答案 2

你可以试试这个:

...
String digest = String.format("%032x", new BigInteger(1, m.digest()));

注意:它是 ,而不是 。"%032x""%32x"


推荐