Lines Matching refs:iv_len

369 		&cipher, &cipher_len, &key, &key_len, &data, &data_len, &mode, &iv, &iv_len) == FAILURE) {	\
586 int key_len, iv_len; in PHP_FUNCTION() local
593 …arameters(ZEND_NUM_ARGS() TSRMLS_CC, "rss", &mcryptind, &key, &key_len, &iv, &iv_len) == FAILURE) { in PHP_FUNCTION()
620 if (iv_len != iv_size) { in PHP_FUNCTION()
621 …(NULL TSRMLS_CC, E_WARNING, "Iv size incorrect; supplied length: %d, needed: %d", iv_len, iv_size); in PHP_FUNCTION()
622 if (iv_len > iv_size) { in PHP_FUNCTION()
623 iv_len = iv_size; in PHP_FUNCTION()
626 memcpy(iv_s, iv, iv_len); in PHP_FUNCTION()
1172 …key_len, const char *data, int data_len, char *mode, const char *iv, int iv_len, int argc, int den… in php_mcrypt_do_crypt() argument
1228 if (iv_size != iv_len) { in php_mcrypt_do_crypt()
1285 int cipher_len, key_len, data_len, iv_len = 0; in PHP_FUNCTION() local
1291 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, Z_STRVAL_PP(mode), iv, iv_len, ZEND_NUM_… in PHP_FUNCTION()
1301 int cipher_len, key_len, data_len, iv_len = 0; in PHP_FUNCTION() local
1307 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, Z_STRVAL_PP(mode), iv, iv_len, ZEND_NUM_… in PHP_FUNCTION()
1317 int cipher_len, key_len, data_len, iv_len = 0; in PHP_FUNCTION() local
1323 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "ecb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1333 int cipher_len, key_len, data_len, iv_len = 0; in PHP_FUNCTION() local
1339 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "cbc", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1349 int cipher_len, key_len, data_len, iv_len = 0; in PHP_FUNCTION() local
1355 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "cfb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1365 int cipher_len, key_len, data_len, iv_len = 0; in PHP_FUNCTION() local
1371 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "ofb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()