Searched refs:alt_ctx (Results 1 – 2 of 2) sorted by relevance
/PHP-7.0/ext/standard/ |
H A D | crypt_sha256.c | 352 struct sha256_ctx alt_ctx; in php_sha256_crypt_r() local 412 sha256_init_ctx(&alt_ctx); in php_sha256_crypt_r() 415 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r() 421 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r() 425 sha256_finish_ctx(&alt_ctx, alt_result); in php_sha256_crypt_r() 447 sha256_init_ctx(&alt_ctx); in php_sha256_crypt_r() 451 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r() 455 sha256_finish_ctx(&alt_ctx, temp_result); in php_sha256_crypt_r() 465 sha256_init_ctx(&alt_ctx); in php_sha256_crypt_r() 473 sha256_finish_ctx(&alt_ctx, temp_result); in php_sha256_crypt_r() [all …]
|
H A D | crypt_sha512.c | 385 struct sha512_ctx alt_ctx; in php_sha512_crypt_r() local 446 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r() 449 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r() 455 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r() 459 sha512_finish_ctx(&alt_ctx, alt_result); in php_sha512_crypt_r() 481 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r() 485 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r() 489 sha512_finish_ctx(&alt_ctx, temp_result); in php_sha512_crypt_r() 500 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r() 508 sha512_finish_ctx(&alt_ctx, temp_result); in php_sha512_crypt_r() [all …]
|
Completed in 9 milliseconds