PHP与mcrypt和openssl之间的区别?

时间:2010-08-27 05:56:45

标签: php encryption openssl mcrypt

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

<?php

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

?>

1 个答案:

答案 0 :(得分:1)

由于密码到加密密钥的派生方法不同。