Lines Matching refs:alt_ctx
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()
452 sha512_process_bytes(salt, salt_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()
504 sha512_process_bytes(salt, salt_len, &alt_ctx); in php_sha512_crypt_r()
508 sha512_finish_ctx(&alt_ctx, temp_result); in php_sha512_crypt_r()
626 ZEND_SECURE_ZERO(&alt_ctx, sizeof(alt_ctx)); in php_sha512_crypt_r()