Home
last modified time | relevance | path

Searched refs:use_key_length (Results 1 – 1 of 1) sorted by relevance

/PHP-5.4/ext/mcrypt/
H A Dmcrypt.c1197 use_key_length = key_len; in php_mcrypt_do_crypt()
1198 key_s = emalloc(use_key_length); in php_mcrypt_do_crypt()
1199 memset(key_s, 0, use_key_length); in php_mcrypt_do_crypt()
1200 memcpy(key_s, key, use_key_length); in php_mcrypt_do_crypt()
1205 use_key_length = key_length_sizes[0]; in php_mcrypt_do_crypt()
1210 key_length_sizes[i] < use_key_length) in php_mcrypt_do_crypt()
1212 use_key_length = key_length_sizes[i]; in php_mcrypt_do_crypt()
1215 key_s = emalloc(use_key_length); in php_mcrypt_do_crypt()
1216 memset(key_s, 0, use_key_length); in php_mcrypt_do_crypt()
1217 memcpy(key_s, key, MIN(key_len, use_key_length)); in php_mcrypt_do_crypt()
[all …]

Completed in 7 milliseconds