iv_size           541 ext/mcrypt/mcrypt.c 	int max_key_size, key_size, iv_size;
iv_size           554 ext/mcrypt/mcrypt.c 	iv_size = mcrypt_enc_get_iv_size(pm->td);
iv_size           563 ext/mcrypt/mcrypt.c 	iv_s = emalloc(iv_size + 1);
iv_size           564 ext/mcrypt/mcrypt.c 	memset(iv_s, 0, iv_size + 1);
iv_size           574 ext/mcrypt/mcrypt.c 	if (iv_len != iv_size) {
iv_size           575 ext/mcrypt/mcrypt.c 		php_error_docref(NULL, E_WARNING, "Iv size incorrect; supplied length: %zd, needed: %d", iv_len, iv_size);
iv_size           576 ext/mcrypt/mcrypt.c 		if (iv_len > iv_size) {
iv_size           577 ext/mcrypt/mcrypt.c 			iv_len = iv_size;
iv_size          1217 ext/mcrypt/mcrypt.c static int php_mcrypt_ensure_valid_iv(MCRYPT td, const char *iv, int iv_size) /* {{{ */
iv_size          1233 ext/mcrypt/mcrypt.c 		if (iv_size != expected_iv_size) {
iv_size          1236 ext/mcrypt/mcrypt.c 				"for this encryption mode", iv_size, expected_iv_size