Lines Matching refs:alt_ctx
369 struct sha512_ctx alt_ctx; in php_sha512_crypt_r() local
434 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r()
437 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r()
440 sha512_process_bytes(salt, salt_len, &alt_ctx); in php_sha512_crypt_r()
443 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r()
447 sha512_finish_ctx(&alt_ctx, alt_result); in php_sha512_crypt_r()
469 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r()
473 sha512_process_bytes(key, key_len, &alt_ctx); in php_sha512_crypt_r()
477 sha512_finish_ctx(&alt_ctx, temp_result); in php_sha512_crypt_r()
488 sha512_init_ctx(&alt_ctx); in php_sha512_crypt_r()
492 sha512_process_bytes(salt, salt_len, &alt_ctx); in php_sha512_crypt_r()
496 sha512_finish_ctx(&alt_ctx, temp_result); in php_sha512_crypt_r()
614 ZEND_SECURE_ZERO(&alt_ctx, sizeof(alt_ctx)); in php_sha512_crypt_r()