标签: 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"; ?>
答案 0 :(得分:1)
由于密码到加密密钥的派生方法不同。