Home
last modified time | relevance | path

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

/PHP-5.3/ext/mcrypt/
H A Dmcrypt.c1193 use_key_length = key_len; in php_mcrypt_do_crypt()
1194 key_s = emalloc(use_key_length); in php_mcrypt_do_crypt()
1195 memset(key_s, 0, use_key_length); in php_mcrypt_do_crypt()
1196 memcpy(key_s, key, use_key_length); in php_mcrypt_do_crypt()
1201 use_key_length = key_length_sizes[0]; in php_mcrypt_do_crypt()
1206 key_length_sizes[i] < use_key_length) in php_mcrypt_do_crypt()
1208 use_key_length = key_length_sizes[i]; in php_mcrypt_do_crypt()
1211 key_s = emalloc(use_key_length); in php_mcrypt_do_crypt()
1212 memset(key_s, 0, use_key_length); in php_mcrypt_do_crypt()
1213 memcpy(key_s, key, MIN(key_len, use_key_length)); in php_mcrypt_do_crypt()
[all …]

Completed in 10 milliseconds