include/crypto/internal/kdf_selftest.h
Source file repositories/reference/linux-study-clean/include/crypto/internal/kdf_selftest.h
File Facts
- System
- Linux kernel
- Corpus path
include/crypto/internal/kdf_selftest.h- Extension
.h- Size
- 1541 bytes
- Lines
- 72
- Domain
- Repository Root And Misc
- Bucket
- include
- Inferred role
- Repository Root And Misc: implementation source
- Status
- source implementation candidate
Why This File Exists
Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
crypto/hash.hlinux/uio.h
Detected Declarations
struct kdf_testvecfunction kdf_test
Annotated Snippet
struct kdf_testvec {
unsigned char *key;
size_t keylen;
unsigned char *ikm;
size_t ikmlen;
struct kvec info;
unsigned char *expected;
size_t expectedlen;
};
static inline int
kdf_test(const struct kdf_testvec *test, const char *name,
int (*crypto_kdf_setkey)(struct crypto_shash *kmd,
const u8 *key, size_t keylen,
const u8 *ikm, size_t ikmlen),
int (*crypto_kdf_generate)(struct crypto_shash *kmd,
const struct kvec *info,
unsigned int info_nvec,
u8 *dst, unsigned int dlen))
{
struct crypto_shash *kmd;
int ret;
u8 *buf = kzalloc(test->expectedlen, GFP_KERNEL);
if (!buf)
return -ENOMEM;
kmd = crypto_alloc_shash(name, 0, 0);
if (IS_ERR(kmd)) {
pr_err("alg: kdf: could not allocate hash handle for %s\n",
name);
kfree(buf);
return -ENOMEM;
}
ret = crypto_kdf_setkey(kmd, test->key, test->keylen,
test->ikm, test->ikmlen);
if (ret) {
pr_err("alg: kdf: could not set key derivation key\n");
goto err;
}
ret = crypto_kdf_generate(kmd, &test->info, 1, buf, test->expectedlen);
if (ret) {
pr_err("alg: kdf: could not obtain key data\n");
goto err;
}
ret = memcmp(test->expected, buf, test->expectedlen);
if (ret)
ret = -EINVAL;
err:
crypto_free_shash(kmd);
kfree(buf);
return ret;
}
#endif /* _CRYPTO_KDF_SELFTEST_H */
Annotation
- Immediate include surface: `crypto/hash.h`, `linux/uio.h`.
- Detected declarations: `struct kdf_testvec`, `function kdf_test`.
- Atlas domain: Repository Root And Misc / include.
- 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.