Lines Matching refs:iv

6936 	zval *pubkeys, *pubkey, *sealdata, *ekeys, *iv = NULL;  in PHP_FUNCTION()  local
6949 &sealdata, &ekeys, &pubkeys, &method, &method_len, &iv) == FAILURE) { in PHP_FUNCTION()
6969 if (!iv && iv_len > 0) { in PHP_FUNCTION()
7034 if (iv) { in PHP_FUNCTION()
7036 ZEND_TRY_ASSIGN_REF_NEW_STR(iv, zend_string_init((char*)iv_buf, iv_len, 0)); in PHP_FUNCTION()
7071 char *method, *iv = NULL; in PHP_FUNCTION() local
7076 &ekey, &ekey_len, &privkey, &method, &method_len, &iv, &iv_len) == FAILURE) { in PHP_FUNCTION()
7099 if (!iv) { in PHP_FUNCTION()
7107 iv_buf = (unsigned char *)iv; in PHP_FUNCTION()
7516 const char *iv, size_t iv_len, in php_openssl_encrypt() argument
7549 &iv, &iv_len, &free_iv, NULL, tag_len, options, 1) == FAILURE || in php_openssl_encrypt()
7595 efree((void *) iv); in php_openssl_encrypt()
7606 char *data, *method, *password, *iv = "", *aad = ""; in PHP_FUNCTION() local
7612 &password, &password_len, &options, &iv, &iv_len, &tag, &aad, &aad_len, &tag_len) == FAILURE) { in PHP_FUNCTION()
7616 …crypt(data, data_len, method, method_len, password, password_len, options, iv, iv_len, tag, tag_le… in PHP_FUNCTION()
7629 const char *iv, size_t iv_len, in php_openssl_decrypt() argument
7674 &iv, &iv_len, &free_iv, tag, tag_len, options, 0) == FAILURE || in php_openssl_decrypt()
7693 efree((void *) iv); in php_openssl_decrypt()
7707 char *data, *method, *password, *iv = "", *tag = NULL, *aad = ""; in PHP_FUNCTION() local
7712 &password, &password_len, &options, &iv, &iv_len, &tag, &tag_len, &aad, &aad_len) == FAILURE) { in PHP_FUNCTION()
7721 …crypt(data, data_len, method, method_len, password, password_len, options, iv, iv_len, tag, tag_le… in PHP_FUNCTION()