lib/crypto/tests/poly1305-testvecs.h
Source file repositories/reference/linux-study-clean/lib/crypto/tests/poly1305-testvecs.h
File Facts
- System
- Linux kernel
- Corpus path
lib/crypto/tests/poly1305-testvecs.h- Extension
.h- Size
- 4091 bytes
- Lines
- 187
- 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[POLY1305_DIGEST_SIZE];
} hash_testvecs[] = {
{
.data_len = 0,
.digest = {
0xe8, 0x2d, 0x67, 0x2c, 0x01, 0x48, 0xf9, 0xb7,
0x87, 0x85, 0x3f, 0xcf, 0x18, 0x66, 0x8c, 0xd3,
},
},
{
.data_len = 1,
.digest = {
0xb8, 0xad, 0xca, 0x6b, 0x32, 0xba, 0x34, 0x42,
0x54, 0x10, 0x28, 0xf5, 0x0f, 0x7e, 0x8e, 0xe3,
},
},
{
.data_len = 2,
.digest = {
0xb8, 0xf7, 0xf4, 0xc2, 0x85, 0x33, 0x80, 0x63,
0xd1, 0x45, 0xda, 0xf8, 0x7c, 0x79, 0x42, 0xd1,
},
},
{
.data_len = 3,
.digest = {
0xf3, 0x73, 0x7b, 0x60, 0x24, 0xcc, 0x5d, 0x3e,
0xd1, 0x95, 0x86, 0xce, 0x89, 0x0a, 0x33, 0xba,
},
},
{
.data_len = 16,
.digest = {
0x0a, 0x1a, 0x2d, 0x39, 0xea, 0x49, 0x8f, 0xb7,
0x90, 0xb6, 0x74, 0x3b, 0x41, 0x3b, 0x96, 0x11,
},
},
{
.data_len = 32,
.digest = {
0x99, 0x05, 0xe3, 0xa7, 0x9e, 0x2a, 0xd2, 0x42,
0xb9, 0x45, 0x0c, 0x08, 0xe7, 0x10, 0xe4, 0xe1,
},
},
{
.data_len = 48,
.digest = {
0xe1, 0xb2, 0x15, 0xee, 0xa2, 0xf3, 0x04, 0xac,
0xdd, 0x27, 0x57, 0x95, 0x2f, 0x45, 0xa8, 0xd3,
},
},
{
.data_len = 49,
.digest = {
0x1c, 0xf3, 0xab, 0x39, 0xc0, 0x69, 0x49, 0x69,
0x89, 0x6f, 0x1f, 0x03, 0x16, 0xe7, 0xc0, 0xf0,
},
},
{
.data_len = 63,
.digest = {
0x30, 0xb0, 0x32, 0x87, 0x51, 0x55, 0x9c, 0x39,
0x38, 0x42, 0x06, 0xe9, 0x2a, 0x3e, 0x2c, 0x92,
},
},
{
.data_len = 64,
.digest = {
0x2c, 0x04, 0x16, 0x36, 0x55, 0x25, 0x2d, 0xc6,
0x3d, 0x70, 0x5b, 0x88, 0x46, 0xb6, 0x71, 0x77,
},
},
{
.data_len = 65,
.digest = {
0x03, 0x87, 0xdd, 0xbe, 0xe8, 0x30, 0xf2, 0x15,
0x40, 0x44, 0x29, 0x7b, 0xb1, 0xe9, 0x9d, 0xe7,
},
},
{
.data_len = 127,
.digest = {
0x29, 0x83, 0x4f, 0xcb, 0x5a, 0x93, 0x25, 0xad,
0x05, 0xa4, 0xb3, 0x24, 0x77, 0x62, 0x2d, 0x3d,
},
},
{
.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.