lib/crypto/aes.c

Source file repositories/reference/linux-study-clean/lib/crypto/aes.c

File Facts

System
Linux kernel
Corpus path
lib/crypto/aes.c
Extension
.c
Size
27266 bytes
Lines
760
Domain
Kernel Services
Bucket
lib
Inferred role
Kernel Services: exported/initcall integration point
Status
integration 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

subsys_initcall(aes_mod_init);

static void __exit aes_mod_exit(void)
{
}
module_exit(aes_mod_exit);

MODULE_DESCRIPTION("AES block cipher");
MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
MODULE_AUTHOR("Eric Biggers <ebiggers@kernel.org>");
MODULE_LICENSE("GPL v2");

Annotation

Implementation Notes