Lines Matching refs:key

62 	ZEND_ARG_INFO(0, key)
188 ZEND_ARG_INFO(0, key)
196 ZEND_ARG_INFO(0, key)
204 ZEND_ARG_INFO(0, key)
212 ZEND_ARG_INFO(0, key)
220 ZEND_ARG_INFO(0, key)
228 ZEND_ARG_INFO(0, key)
313 zval **cipher, **data, **key, **mode; \
369 &cipher, &cipher_len, &key, &key_len, &data, &data_len, &mode, &iv, &iv_len) == FAILURE) { \
585 char *key, *iv; in PHP_FUNCTION() local
593 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rss", &mcryptind, &key, &key_len, &iv, &iv_l… in PHP_FUNCTION()
618 memcpy(key_s, key, key_len); 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
1200 memcpy(key_s, key, use_key_length); in php_mcrypt_do_crypt()
1204 memcpy(key_s, key, MIN(key_len, key_length_sizes[0])); in php_mcrypt_do_crypt()
1217 memcpy(key_s, key, MIN(key_len, use_key_length)); 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()