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) { \
560 char *cipher, *cipher_dir; in PHP_FUNCTION() local
568 &cipher, &cipher_len, &cipher_dir, &cipher_dir_len, in PHP_FUNCTION()
574 cipher, in PHP_FUNCTION()
1067 char *cipher; in PHP_FUNCTION() local
1077 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1081 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1096 char *cipher; in PHP_FUNCTION() local
1106 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1110 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1125 char *cipher; in PHP_FUNCTION() local
1135 &cipher, &cipher_len, &module, &module_len) == FAILURE) { in PHP_FUNCTION()
1139 td = mcrypt_module_open(cipher, cipher_dir_string, module, module_dir_string); in PHP_FUNCTION()
1157 char *cipher; in PHP_FUNCTION() local
1164 &cipher, &cipher_len) == FAILURE) { in PHP_FUNCTION()
1170 td = mcrypt_module_open(cipher, cipher_dir_string, "ecb", module_dir_string); in PHP_FUNCTION()
1177 td = mcrypt_module_open(cipher, cipher_dir_string, "stream", module_dir_string); in PHP_FUNCTION()
1191 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
1204 td = mcrypt_module_open(cipher, cipher_dir_string, mode, module_dir_string); in php_mcrypt_do_crypt()
1303 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1310 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, Z_STRVAL_PP(mode), iv, iv_len, ZEND_NUM_… in PHP_FUNCTION()
1319 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1326 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, Z_STRVAL_PP(mode), iv, iv_len, ZEND_NUM_… in PHP_FUNCTION()
1335 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1342 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "ecb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1351 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1358 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "cbc", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1367 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1374 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "cfb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()
1383 char *cipher, *key, *data, *iv = NULL; in PHP_FUNCTION() local
1390 …php_mcrypt_do_crypt(cipher, key, key_len, data, data_len, "ofb", iv, iv_len, ZEND_NUM_ARGS(), Z_LV… in PHP_FUNCTION()