lib/crypto/arm64/sha512.h

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

File Facts

System
Linux kernel
Corpus path
lib/crypto/arm64/sha512.h
Extension
.h
Size
956 bytes
Lines
36
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

likely(may_use_simd())) {
		scoped_ksimd()
			sha512_ce_transform(state, data, nblocks);
	} else {
		sha512_block_data_order(state, data, nblocks);
	}
}

#define sha512_mod_init_arch sha512_mod_init_arch
static void sha512_mod_init_arch(void)
{
	if (cpu_have_named_feature(SHA512))
		static_branch_enable(&have_sha512_insns);
}

Annotation

Implementation Notes