lib/crypto/arm/sha512.h

Source file repositories/reference/linux-study-clean/lib/crypto/arm/sha512.h

File Facts

System
Linux kernel
Corpus path
lib/crypto/arm/sha512.h
Extension
.h
Size
1034 bytes
Lines
37
Domain
Kernel Services
Bucket
lib
Inferred role
Kernel Services: implementation source
Status
source implementation candidate

Why This File Exists

Shared kernel service surface used by multiple subsystems, including helpers, cryptography, virtualization support, and async I/O infrastructure.

Dependency Surface

Detected Declarations

Annotated Snippet

static_branch_likely(&have_neon) && likely(may_use_simd())) {
		scoped_ksimd()
			sha512_block_data_order_neon(state, data, nblocks);
	} else {
		sha512_block_data_order(state, data, nblocks);
	}
}

#ifdef CONFIG_KERNEL_MODE_NEON
#define sha512_mod_init_arch sha512_mod_init_arch
static void sha512_mod_init_arch(void)
{
	if (cpu_has_neon())
		static_branch_enable(&have_neon);
}
#endif /* CONFIG_KERNEL_MODE_NEON */

Annotation

Implementation Notes