lib/crypto/tests/md5-testvecs.h
Source file repositories/reference/linux-study-clean/lib/crypto/tests/md5-testvecs.h
File Facts
- System
- Linux kernel
- Corpus path
lib/crypto/tests/md5-testvecs.h- Extension
.h- Size
- 4070 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[MD5_DIGEST_SIZE];
} hash_testvecs[] = {
{
.data_len = 0,
.digest = {
0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,
},
},
{
.data_len = 1,
.digest = {
0x16, 0x7b, 0x86, 0xf2, 0x1d, 0xf3, 0x76, 0xc9,
0x6f, 0x10, 0xa0, 0x61, 0x5b, 0x14, 0x20, 0x0b,
},
},
{
.data_len = 2,
.digest = {
0x2d, 0x30, 0x96, 0xc7, 0x43, 0x40, 0xed, 0xb2,
0xfb, 0x84, 0x63, 0x9a, 0xec, 0xc7, 0x3c, 0x3c,
},
},
{
.data_len = 3,
.digest = {
0xe5, 0x0f, 0xce, 0xe0, 0xc8, 0xff, 0x4e, 0x08,
0x5e, 0x19, 0xe5, 0xf2, 0x08, 0x11, 0x19, 0x16,
},
},
{
.data_len = 16,
.digest = {
0xe8, 0xca, 0x29, 0x05, 0x2f, 0xd1, 0xf3, 0x99,
0x40, 0x71, 0xf5, 0xc2, 0xf7, 0xf8, 0x17, 0x3e,
},
},
{
.data_len = 32,
.digest = {
0xe3, 0x20, 0xc1, 0xd8, 0x21, 0x14, 0x44, 0x59,
0x1a, 0xf5, 0x91, 0xaf, 0x69, 0xbe, 0x93, 0x9d,
},
},
{
.data_len = 48,
.digest = {
0xfb, 0x06, 0xb0, 0xf0, 0x00, 0x10, 0x4b, 0x68,
0x3d, 0x75, 0xf9, 0x70, 0xde, 0xbb, 0x32, 0x16,
},
},
{
.data_len = 49,
.digest = {
0x52, 0x86, 0x48, 0x8b, 0xae, 0x91, 0x7c, 0x4e,
0xc2, 0x2a, 0x69, 0x07, 0x35, 0xcc, 0xb2, 0x88,
},
},
{
.data_len = 63,
.digest = {
0xfa, 0xd3, 0xf6, 0xe6, 0x7b, 0x1a, 0xc6, 0x05,
0x73, 0x35, 0x02, 0xab, 0xc7, 0xb3, 0x47, 0xcb,
},
},
{
.data_len = 64,
.digest = {
0xc5, 0x59, 0x29, 0xe9, 0x0a, 0x4a, 0x86, 0x43,
0x7c, 0xaf, 0xdf, 0x83, 0xd3, 0xb8, 0x33, 0x5f,
},
},
{
.data_len = 65,
.digest = {
0x80, 0x05, 0x75, 0x39, 0xec, 0x44, 0x8a, 0x81,
0xe7, 0x6e, 0x8d, 0xd1, 0xc6, 0xeb, 0xc2, 0xf0,
},
},
{
.data_len = 127,
.digest = {
0x3f, 0x02, 0xe8, 0xc6, 0xb8, 0x6a, 0x39, 0xc3,
0xa4, 0x1c, 0xd9, 0x8f, 0x4a, 0x71, 0x40, 0x30,
},
},
{
.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.