update : 2015.11.03
php.shukuma.com검색:
|
mcrypt_get_iv_size(PHP 4 >= 4.0.2, PHP 5) mcrypt_get_iv_size — Returns the size of the IV belonging to a specific cipher/mode combination 설명
int mcrypt_get_iv_size
( string
$cipher
, string $mode
)
Gets the size of the IV belonging to a specific
It is more useful to use the mcrypt_enc_get_iv_size() function as this uses the resource returned by mcrypt_module_open(). 인수
반환값
Returns the size of the Initialization Vector (IV) in bytes. On error the
function returns 예제
Example #1 mcrypt_get_iv_size() Example
<?php 참고
|