なぜecbモードでblowfishを使用するこれらの2つの方法が異なる出力を持っているのですか?
<?php
echo bin2hex(mcrypt_encrypt("blowfish", "test", "test", "ecb"))."\n";
echo bin2hex(openssl_encrypt("test", "bf-ecb", "test", true))."\n";
?>
なぜecbモードでblowfishを使用するこれらの2つの方法が異なる出力を持っているのですか?
<?php
echo bin2hex(mcrypt_encrypt("blowfish", "test", "test", "ecb"))."\n";
echo bin2hex(openssl_encrypt("test", "bf-ecb", "test", true))."\n";
?>