net/mac80211/aes_ccm.h
Source file repositories/reference/linux-study-clean/net/mac80211/aes_ccm.h
File Facts
- System
- Linux kernel
- Corpus path
net/mac80211/aes_ccm.h- Extension
.h- Size
- 1028 bytes
- Lines
- 46
- Domain
- Networking Core
- Bucket
- Sockets, Protocols, Packet Path, And Network Policy
- Inferred role
- Networking Core: implementation source
- Status
- source implementation candidate
Why This File Exists
Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.
- Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
aead_api.h
Detected Declarations
function ieee80211_aes_key_setup_encryptfunction ieee80211_aes_ccm_encryptfunction ieee80211_aes_ccm_decryptfunction ieee80211_aes_key_free
Annotated Snippet
#ifndef AES_CCM_H
#define AES_CCM_H
#include "aead_api.h"
#define CCM_AAD_LEN 32
static inline struct crypto_aead *
ieee80211_aes_key_setup_encrypt(const u8 key[], size_t key_len, size_t mic_len)
{
return aead_key_setup_encrypt("ccm(aes)", key, key_len, mic_len);
}
static inline int
ieee80211_aes_ccm_encrypt(struct crypto_aead *tfm,
u8 *b_0, u8 *aad, u8 *data,
size_t data_len, u8 *mic)
{
return aead_encrypt(tfm, b_0, aad + 2,
be16_to_cpup((__be16 *)aad),
data, data_len, mic);
}
static inline int
ieee80211_aes_ccm_decrypt(struct crypto_aead *tfm,
u8 *b_0, u8 *aad, u8 *data,
size_t data_len, u8 *mic)
{
return aead_decrypt(tfm, b_0, aad + 2,
be16_to_cpup((__be16 *)aad),
data, data_len, mic);
}
static inline void ieee80211_aes_key_free(struct crypto_aead *tfm)
{
return aead_key_free(tfm);
}
#endif /* AES_CCM_H */
Annotation
- Immediate include surface: `aead_api.h`.
- Detected declarations: `function ieee80211_aes_key_setup_encrypt`, `function ieee80211_aes_ccm_encrypt`, `function ieee80211_aes_ccm_decrypt`, `function ieee80211_aes_key_free`.
- Atlas domain: Networking Core / Sockets, Protocols, Packet Path, And Network Policy.
- 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.