include/crypto/kdf_sp800108.h
Source file repositories/reference/linux-study-clean/include/crypto/kdf_sp800108.h
File Facts
- System
- Linux kernel
- Corpus path
include/crypto/kdf_sp800108.h- Extension
.h- Size
- 2121 bytes
- Lines
- 62
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
crypto/hash.hlinux/uio.h
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
#ifndef _CRYPTO_KDF108_H
#define _CRYPTO_KDF108_H
#include <crypto/hash.h>
#include <linux/uio.h>
/**
* Counter KDF generate operation according to SP800-108 section 5.1
* as well as SP800-56A section 5.8.1 (Single-step KDF).
*
* @kmd Keyed message digest whose key was set with crypto_kdf108_setkey or
* unkeyed message digest
* @info optional context and application specific information - this may be
* NULL
* @info_vec number of optional context/application specific information entries
* @dst destination buffer that the caller already allocated
* @dlen length of the destination buffer - the KDF derives that amount of
* bytes.
*
* To comply with SP800-108, the caller must provide Label || 0x00 || Context
* in the info parameter.
*
* @return 0 on success, < 0 on error
*/
int crypto_kdf108_ctr_generate(struct crypto_shash *kmd,
const struct kvec *info, unsigned int info_nvec,
u8 *dst, unsigned int dlen);
/**
* Counter KDF setkey operation
*
* @kmd Keyed message digest allocated by the caller. The key should not have
* been set.
* @key Seed key to be used to initialize the keyed message digest context.
* @keylen This length of the key buffer.
* @ikm The SP800-108 KDF does not support IKM - this parameter must be NULL
* @ikmlen This parameter must be 0.
*
* According to SP800-108 section 7.2, the seed key must be at least as large as
* the message digest size of the used keyed message digest. This limitation
* is enforced by the implementation.
*
* SP800-108 allows the use of either a HMAC or a hash primitive. When
* the caller intends to use a hash primitive, the call to
* crypto_kdf108_setkey is not required and the key derivation operation can
* immediately performed using crypto_kdf108_ctr_generate after allocating
* a handle.
*
* @return 0 on success, < 0 on error
*/
int crypto_kdf108_setkey(struct crypto_shash *kmd,
const u8 *key, size_t keylen,
const u8 *ikm, size_t ikmlen);
#endif /* _CRYPTO_KDF108_H */
Annotation
- Immediate include surface: `crypto/hash.h`, `linux/uio.h`.
- 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.