Lines Matching refs:iv

6651 	zval *pubkeys, *pubkey, *sealdata, *ekeys, *iv = NULL;  in PHP_FUNCTION()  local
6664 &sealdata, &ekeys, &pubkeys, &method, &method_len, &iv) == FAILURE) { in PHP_FUNCTION()
6684 if (!iv && iv_len > 0) { in PHP_FUNCTION()
6749 if (iv) { in PHP_FUNCTION()
6751 ZEND_TRY_ASSIGN_REF_NEW_STR(iv, zend_string_init((char*)iv_buf, iv_len, 0)); in PHP_FUNCTION()
6786 char *method, *iv = NULL; in PHP_FUNCTION() local
6791 &ekey, &ekey_len, &privkey, &method, &method_len, &iv, &iv_len) == FAILURE) { in PHP_FUNCTION()
6814 if (!iv) { in PHP_FUNCTION()
6822 iv_buf = (unsigned char *)iv; in PHP_FUNCTION()
7199 const char *iv, size_t iv_len, in php_openssl_encrypt() argument
7232 &iv, &iv_len, &free_iv, NULL, tag_len, options, 1) == FAILURE || in php_openssl_encrypt()
7278 efree((void *) iv); in php_openssl_encrypt()
7289 char *data, *method, *password, *iv = "", *aad = ""; in PHP_FUNCTION() local
7295 &password, &password_len, &options, &iv, &iv_len, &tag, &aad, &aad_len, &tag_len) == FAILURE) { in PHP_FUNCTION()
7299 …crypt(data, data_len, method, method_len, password, password_len, options, iv, iv_len, tag, tag_le… in PHP_FUNCTION()
7312 const char *iv, size_t iv_len, in php_openssl_decrypt() argument
7357 &iv, &iv_len, &free_iv, tag, tag_len, options, 0) == FAILURE || in php_openssl_decrypt()
7376 efree((void *) iv); in php_openssl_decrypt()
7390 char *data, *method, *password, *iv = "", *tag = NULL, *aad = ""; in PHP_FUNCTION() local
7395 &password, &password_len, &options, &iv, &iv_len, &tag, &tag_len, &aad, &aad_len) == FAILURE) { in PHP_FUNCTION()
7404 …crypt(data, data_len, method, method_len, password, password_len, options, iv, iv_len, tag, tag_le… in PHP_FUNCTION()