perl中的情况
$password = 'admin';
$newchal = 'hnfdfhj238478wdehf';
$password2 = unpack "H32", ($password ^ $newchal);
这非常重要,因为我将此密码发送到需要正确编码的半径服务器。上面的这个方法来自标准脚本。
现在在 PHP 中我尝试过:
$password2 = unpack("H32", $password.''.$newchal);
我比较了结果,但结果不同..我无法弄清楚'^'在perl中的含义。谁能帮我吗?