Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/
H A Dphp_crypt_r.c107 PHP_MD5_CTX ctx, ctx1; in php_md5_crypt_r() local
138 PHP_MD5Init(&ctx1); in php_md5_crypt_r()
139 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
140 PHP_MD5Update(&ctx1, (const unsigned char *)sp, sl); in php_md5_crypt_r()
141 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
142 PHP_MD5Final(final, &ctx1); in php_md5_crypt_r()
170 PHP_MD5Init(&ctx1); in php_md5_crypt_r()
175 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
178 PHP_MD5Update(&ctx1, (const unsigned char *)sp, sl); in php_md5_crypt_r()
184 PHP_MD5Update(&ctx1, final, 16); in php_md5_crypt_r()
[all …]
/PHP-8.0/ext/libxml/tests/
H A Dbug54440.phpt27 $ctx1 = stream_context_create(array('test'=>array('test'=>'test 1')));
30 stream_context_set_default(stream_context_get_options($ctx1));
/PHP-8.0/ext/hash/tests/
H A Dhash_serialize_001.phpt14 $ctx1 = unserialize($serial);
15 hash_update($ctx1, "I can't remember anything");
16 $serial = serialize($ctx1);
18 var_dump(hash_final($ctx1));

Completed in 20 milliseconds