|
mcrypt_create_ivCreates an initialization vector (IV) from a random source 警告
この関数は PHP 7.1.0 で 非推奨 となり、 PHP 7.2.0 で削除 されました。 この関数の代替として、これらが使えます。
説明
string mcrypt_create_iv(int
$size , int $source = MCRYPT_DEV_URANDOM)Creates an initialization vector (IV) from a random source. The IV is only meant to give an alternative seed to the encryption routines. This IV does not need to be secret at all, though it can be desirable. You even can send it along with your ciphertext without losing security. パラメータ
戻り値
Returns the initialization vector, or 例
例1 mcrypt_create_iv Example
参考
|