arch/x86/crypto/aegis128-aesni-glue.c
Source file repositories/reference/linux-study-clean/arch/x86/crypto/aegis128-aesni-glue.c
File Facts
- System
- Linux kernel
- Corpus path
arch/x86/crypto/aegis128-aesni-glue.c- Extension
.c- Size
- 7660 bytes
- Lines
- 288
- Domain
- Architecture Layer
- Bucket
- arch/x86
- Inferred role
- Architecture Layer: exported/initcall integration point
- Status
- integration implementation candidate
Why This File Exists
CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
crypto/internal/aead.hcrypto/internal/skcipher.hcrypto/scatterwalk.hlinux/module.hasm/fpu/api.hasm/cpu_device_id.h
Detected Declarations
struct aegis_blockstruct aegis_statestruct aegis_ctxfunction crypto_aegis128_aesni_process_adfunction crypto_aegis128_aesni_process_cryptfunction crypto_aegis128_aesni_setkeyfunction crypto_aegis128_aesni_setauthsizefunction crypto_aegis128_aesni_cryptfunction crypto_aegis128_aesni_encryptfunction crypto_aegis128_aesni_decryptfunction crypto_aegis128_aesni_module_initfunction crypto_aegis128_aesni_module_exitmodule init crypto_aegis128_aesni_module_init
Annotated Snippet
module_init(crypto_aegis128_aesni_module_init);
module_exit(crypto_aegis128_aesni_module_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Ondrej Mosnacek <omosnacek@gmail.com>");
MODULE_DESCRIPTION("AEGIS-128 AEAD algorithm -- AESNI+SSE4.1 implementation");
MODULE_ALIAS_CRYPTO("aegis128");
MODULE_ALIAS_CRYPTO("aegis128-aesni");
Annotation
- Immediate include surface: `crypto/internal/aead.h`, `crypto/internal/skcipher.h`, `crypto/scatterwalk.h`, `linux/module.h`, `asm/fpu/api.h`, `asm/cpu_device_id.h`.
- Detected declarations: `struct aegis_block`, `struct aegis_state`, `struct aegis_ctx`, `function crypto_aegis128_aesni_process_ad`, `function crypto_aegis128_aesni_process_crypt`, `function crypto_aegis128_aesni_setkey`, `function crypto_aegis128_aesni_setauthsize`, `function crypto_aegis128_aesni_crypt`, `function crypto_aegis128_aesni_encrypt`, `function crypto_aegis128_aesni_decrypt`.
- Atlas domain: Architecture Layer / arch/x86.
- Implementation status: integration implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.