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()
1044 char *cipher; in PHP_FUNCTION() local
1054 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1058 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1073 char *cipher; in PHP_FUNCTION() local
1083 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1087 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1102 char *cipher; in PHP_FUNCTION() local
1112 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1116 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1134 char *cipher; in PHP_FUNCTION() local
1141 &cipher, &cipher_len) == FAILURE) { in PHP_FUNCTION()
1147 td = mcrypt_module_open(cipher, cipher_dir_string, "ecb", module_dir_string); in PHP_FUNCTION()
1154 td = mcrypt_module_open(cipher, cipher_dir_string, "stream", module_dir_string); in PHP_FUNCTION()
1168 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
1181 td = mcrypt_module_open(cipher, cipher_dir_string, mode, module_dir_string); in php_mcrypt_do_crypt()
1280 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1287 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, Z_STRVAL_PP(mode), iv, iv_len, ZEND_NUM_… in PHP_FUNCTION()
1296 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1303 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, Z_STRVAL_PP(mode), iv, iv_len, ZEND_NUM_… in PHP_FUNCTION()
1312 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1319 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "ecb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1328 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1335 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "cbc", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1344 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1351 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "cfb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1360 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1367 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "ofb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()