Lines Matching refs:alt_ctx
338 struct sha512_ctx alt_ctx; in crypt_sha512_r() local
406 __crypt__sha512_init_ctx (&alt_ctx); in crypt_sha512_r()
409 __crypt__sha512_process_bytes (key, key_len, &alt_ctx); in crypt_sha512_r()
412 __crypt__sha512_process_bytes (salt, salt_len, &alt_ctx); in crypt_sha512_r()
415 __crypt__sha512_process_bytes (key, key_len, &alt_ctx); in crypt_sha512_r()
419 __crypt__sha512_finish_ctx (&alt_ctx, alt_result); in crypt_sha512_r()
438 __crypt__sha512_init_ctx (&alt_ctx); in crypt_sha512_r()
442 __crypt__sha512_process_bytes (key, key_len, &alt_ctx); in crypt_sha512_r()
445 __crypt__sha512_finish_ctx (&alt_ctx, temp_result); in crypt_sha512_r()
454 __crypt__sha512_init_ctx (&alt_ctx); in crypt_sha512_r()
458 __crypt__sha512_process_bytes (salt, salt_len, &alt_ctx); in crypt_sha512_r()
461 __crypt__sha512_finish_ctx (&alt_ctx, temp_result); in crypt_sha512_r()
575 memset (&alt_ctx, '\0', sizeof (alt_ctx)); in crypt_sha512_r()