我有一个关注__construct的课程。
final class mydecoder {
private $td;
public function __construct($key){
/* Open the cipher */
$this->td = mcrypt_module_open(MCRYPT_BLOWFISH, '', 'ecb', '');
/* Create the IV and determine the keysize length, use MCRYPT_RAND
* on Windows instead */
$iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($this->td), MCRYPT_DEV_RANDOM);
$ks = mcrypt_enc_get_key_size($this->td);
/* Create key */
$key = substr(md5($key), 0, $ks);
/* Intialize encryption */
mcrypt_generic_init($this->td, $key, $iv);
}
}
我称之为:
$encoder = new myfish('mykey1');
$encoder = new myfish('mykey2');
我有以下问题。
第一次打开页面
construct #1 execution time: 5s
construct #2 execution time: 0s
按F5
construct #1 execution time: 0s
construct #2 execution time: 14s
按F5
construct #1 execution time: 5s
construct #2 execution time: 14s
将F5混搭3次(排队)
construct #1 execution time: 15s
construct #2 execution time: 45s
它看起来像排队?它是如何工作的?也许我没有正确使用它?我没有多少关于密码学的经验,因为我以前从未需要它:)
答案 0 :(得分:1)
该问题是由初始化载体(IV)基因引起的,即该行:
$iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($this->td), MCRYPT_DEV_RANDOM);
如果您使用MCRYPT_DEV_RANDOM
模式,PHP将等到有足够的熵才能保证安全。
但是,如果您将模式更改为MCRYPT_DEV_URANDOM
(它的安全性会降低),但如果熵变得太低,它就不会等待,从而提高速度。