Lines Matching refs:alt_ctx
368 struct sha512_ctx alt_ctx; in php_sha512_crypt_r() local
440 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r()
443 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r()
446 sha512_process_bytes(salt, salt_len, &alt_ctx); in php_sha512_crypt_r()
449 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r()
453 sha512_finish_ctx(&alt_ctx, alt_result); in php_sha512_crypt_r()
475 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r()
479 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r()
483 sha512_finish_ctx(&alt_ctx, temp_result); in php_sha512_crypt_r()
495 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r()
499 sha512_process_bytes(salt, salt_len, &alt_ctx); in php_sha512_crypt_r()
503 sha512_finish_ctx(&alt_ctx, temp_result); in php_sha512_crypt_r()
622 ZEND_SECURE_ZERO(&alt_ctx, sizeof(alt_ctx)); in php_sha512_crypt_r()