Lines Matching refs:alt_ctx
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()
418 sha256_process_bytes(salt, salt_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()
469 sha256_process_bytes(salt, salt_len, &alt_ctx); in php_sha256_crypt_r()
473 sha256_finish_ctx(&alt_ctx, temp_result); in php_sha256_crypt_r()
578 memset(&alt_ctx, '\0', sizeof(alt_ctx)); in php_sha256_crypt_r()