Lines Matching refs:options

412 	ZEND_ARG_INFO(0, options)
423 ZEND_ARG_INFO(0, options)
6598 char *tag, int tag_len, zend_long options, int enc) /* {{{ */ in php_openssl_cipher_init() argument
6637 …if ((OPENSSL_DONT_ZERO_PAD_KEY & options) && !EVP_CIPHER_CTX_set_key_length(cipher_ctx, password_l… in php_openssl_cipher_init()
6659 if (options & OPENSSL_ZERO_PADDING) { in php_openssl_cipher_init()
6709 …ethod, size_t method_len, char *password, size_t password_len, zend_long options, char *iv, size_t… in php_openssl_encrypt() argument
6740 &iv, &iv_len, &free_iv, NULL, tag_len, options, 1) == FAILURE || in php_openssl_encrypt()
6746 if (options & OPENSSL_RAW_DATA) { in php_openssl_encrypt()
6797 zend_long options = 0, tag_len = 16; in PHP_FUNCTION() local
6804 &password, &password_len, &options, &iv, &iv_len, &tag, &aad, &aad_len, &tag_len) == FAILURE) { in PHP_FUNCTION()
6808 …if ((ret = php_openssl_encrypt(data, data_len, method, method_len, password, password_len, options in PHP_FUNCTION()
6816 …ethod, size_t method_len, char *password, size_t password_len, zend_long options, char *iv, size_t… in php_openssl_decrypt() argument
6846 if (!(options & OPENSSL_RAW_DATA)) { in php_openssl_decrypt()
6859 &iv, &iv_len, &free_iv, tag, tag_len, options, 0) == FAILURE || in php_openssl_decrypt()
6892 zend_long options = 0; in PHP_FUNCTION() local
6898 &password, &password_len, &options, &iv, &iv_len, &tag, &tag_len, &aad, &aad_len) == FAILURE) { in PHP_FUNCTION()
6907 …if ((ret = php_openssl_decrypt(data, data_len, method, method_len, password, password_len, options in PHP_FUNCTION()