Lines Matching refs:cipher

54 	ZEND_ARG_INFO(0, cipher)
168 ZEND_ARG_INFO(0, cipher)
173 ZEND_ARG_INFO(0, cipher)
178 ZEND_ARG_INFO(0, cipher)
183 ZEND_ARG_INFO(0, cipher)
187 ZEND_ARG_INFO(0, cipher)
195 ZEND_ARG_INFO(0, cipher)
203 ZEND_ARG_INFO(0, cipher)
211 ZEND_ARG_INFO(0, cipher)
219 ZEND_ARG_INFO(0, cipher)
227 ZEND_ARG_INFO(0, cipher)
313 zval **cipher, **data, **key, **mode; \
325 bsize = mcrypt_get_block_size(Z_LVAL_PP(cipher)); \
369 &cipher, &cipher_len, &key, &key_len, &data, &data_len, &mode, &iv, &iv_len) == FAILURE) { \
549 char *cipher, *cipher_dir; in PHP_FUNCTION() local
557 &cipher, &cipher_len, &cipher_dir, &cipher_dir_len, in PHP_FUNCTION()
563 cipher, in PHP_FUNCTION()
1048 char *cipher; in PHP_FUNCTION() local
1058 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1062 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1077 char *cipher; in PHP_FUNCTION() local
1087 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1091 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1106 char *cipher; in PHP_FUNCTION() local
1116 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1120 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1138 char *cipher; in PHP_FUNCTION() local
1145 &cipher, &cipher_len) == FAILURE) { in PHP_FUNCTION()
1151 td = mcrypt_module_open(cipher, cipher_dir_string, "ecb", module_dir_string); in PHP_FUNCTION()
1158 td = mcrypt_module_open(cipher, cipher_dir_string, "stream", module_dir_string); in PHP_FUNCTION()
1172 static void php_mcrypt_do_crypt(char* cipher, const char *key, int key_len, const char *data, int d… in php_mcrypt_do_crypt() argument
1185 td = mcrypt_module_open(cipher, cipher_dir_string, mode, module_dir_string); in php_mcrypt_do_crypt()
1284 char *cipher, *key, *data, *iv = NULL; 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()
1300 char *cipher, *key, *data, *iv = NULL; 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()
1316 char *cipher, *key, *data, *iv = NULL; 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()
1332 char *cipher, *key, *data, *iv = NULL; 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()
1348 char *cipher, *key, *data, *iv = NULL; 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()
1364 char *cipher, *key, *data, *iv = NULL; 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()