在PHP中转换的Java消息摘要更新

时间:2017-11-19 16:54:07

标签: java php

我在Java Pastebin link中有这段代码。抱歉,对于pastebin链接,但SO允许我粘贴那么多代码

哪些输出" Ap1pAXP8yS"

我试图在PHP中转换代码。直到现在我已经转换了一些,但它没有正常工作(没有在PHP中获得Ap1pAXP8yS)。

主要问题似乎是md.update

这里是PHP中的代码

function bin2print($hex)
{
    $out = "";
    $mapping = [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', '$', 'j', 'k', '-', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', '=', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '.', '/', '%' ];
    for ($i = 0; $i < count($hex); $i++) {

        $j = $hex[$i];

        if ($j < 0) {
            $j = 256 + $j;
        }

        $out.=  $mapping [($j % count($mapping)) ];
    }
    return $out;
}

function byteStr2byteArray($s)
{
    return array_slice(unpack("C*", "\0".$s), 1);
} 


function getBytes($string)
{

    $bytes = array();
    for($i = 0; $i < strlen($string); $i++) {
        $bytes[] = ord($string[$i]);
    }

    $out = '';
    foreach($bytes as $single) {
        $out.=$single ;
    }
    return ($out);
}

$serial = '111111111111';
$header = 'cow';

$ctx = hash_init('md5' );
hash_update($ctx, getBytes($header));
hash_update($ctx, getBytes($serial));
$raw = hash_final($ctx,true);

$out = bin2print(byteStr2byteArray($raw));

echo substr($out,0,10);

Wich输出&#34; -fjk7WCU2E&#34;

我做错了什么?

1 个答案:

答案 0 :(得分:0)

有几个错误,但最重要的是你只是过于复杂的事情。只需使用base64编码和内置函数。在PHP方面:

$ctx = hash_init('md5');
hash_update($ctx, $header);
hash_update($ctx, $serial);
$raw = hash_final($ctx, true);
$out = substr(base64_encode($raw), 0, 10);

在Java方面:

// ...
raw = md.digest();
out = Base64.getEncoder().encodeToString(raw).substring(0, 10);