2

为什么这两种在 ecb-mode 中使用河豚的方法有不同的输出?

<?php

echo bin2hex(mcrypt_encrypt("blowfish", "test", "test", "ecb"))."\n";
echo bin2hex(openssl_encrypt("test", "bf-ecb", "test", true))."\n";

?>
4

1 回答 1

1

因为不同的密码到加密密钥派生方法。

于 2010-08-27T12:31:40.520 回答