lib/crypto/tests/aes-cmac-testvecs.h
Source file repositories/reference/linux-study-clean/lib/crypto/tests/aes-cmac-testvecs.h
File Facts
- System
- Linux kernel
- Corpus path
lib/crypto/tests/aes-cmac-testvecs.h- Extension
.h- Size
- 3908 bytes
- Lines
- 182
- 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.
- Shared kernel service surface used by multiple subsystems, including helpers, cryptography, virtualization support, and async I/O infrastructure.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
static const struct {
size_t data_len;
u8 digest[AES_BLOCK_SIZE];
} hash_testvecs[] = {
{
.data_len = 0,
.digest = {
0x9a, 0xeb, 0x94, 0xc1, 0xe9, 0xc1, 0x57, 0x49,
0x7e, 0xba, 0x66, 0x47, 0x9f, 0x03, 0x2c, 0x5b,
},
},
{
.data_len = 1,
.digest = {
0x52, 0xef, 0x65, 0xda, 0x7b, 0x92, 0x0c, 0x0f,
0xdd, 0xd6, 0xb9, 0x68, 0x3f, 0xcc, 0x5f, 0xea,
},
},
{
.data_len = 2,
.digest = {
0xc3, 0x95, 0x15, 0xea, 0x16, 0x33, 0xbe, 0x5a,
0xd4, 0x2c, 0x25, 0x06, 0x15, 0xc6, 0x10, 0x19,
},
},
{
.data_len = 3,
.digest = {
0x82, 0x41, 0x41, 0xd5, 0x33, 0x26, 0x0b, 0xb6,
0xc8, 0xf7, 0x8d, 0x76, 0x8a, 0xfc, 0x0e, 0xe4,
},
},
{
.data_len = 16,
.digest = {
0x94, 0x09, 0x80, 0x07, 0xba, 0x7c, 0xed, 0xd2,
0x74, 0x72, 0x30, 0x26, 0xb5, 0x11, 0x64, 0xc1,
},
},
{
.data_len = 32,
.digest = {
0xeb, 0xcf, 0x1e, 0x67, 0x21, 0x64, 0x93, 0xa0,
0xea, 0xc4, 0xb9, 0x2d, 0x55, 0xc8, 0xac, 0x99,
},
},
{
.data_len = 48,
.digest = {
0xd0, 0xd6, 0xdb, 0xe2, 0x45, 0x98, 0x6a, 0x7a,
0x5f, 0xd6, 0xcd, 0x9d, 0x12, 0x26, 0x20, 0x87,
},
},
{
.data_len = 49,
.digest = {
0x63, 0x25, 0x3c, 0xe2, 0x2a, 0xfa, 0xe3, 0x1e,
0x54, 0x10, 0x18, 0x28, 0xc6, 0xb8, 0xcb, 0x58,
},
},
{
.data_len = 63,
.digest = {
0x4d, 0xab, 0xae, 0x99, 0x90, 0x13, 0x3f, 0x4f,
0x42, 0x0f, 0x19, 0x94, 0xa2, 0x52, 0xfd, 0xaf,
},
},
{
.data_len = 64,
.digest = {
0xf7, 0x49, 0xb9, 0xa7, 0xf9, 0x3e, 0xa0, 0xca,
0xb2, 0x6c, 0xd7, 0x87, 0x7d, 0x1e, 0xd2, 0xcb,
},
},
{
.data_len = 65,
.digest = {
0x27, 0x2c, 0xb7, 0xc8, 0xdd, 0x26, 0xa9, 0xfe,
0x37, 0x64, 0x84, 0x38, 0xa5, 0x7e, 0xbc, 0x04,
},
},
{
.data_len = 127,
.digest = {
0xfd, 0x1f, 0x01, 0xa4, 0xea, 0x9b, 0xbd, 0xef,
0x09, 0x97, 0x57, 0x60, 0x95, 0x23, 0xcc, 0x71,
},
},
{
.data_len = 128,
Annotation
- Atlas domain: Kernel Services / lib.
- Implementation status: source 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.