Lines Matching full:ccm
76 .ic_name = "AES-CCM",
93 .ic_name = "AES-CCM-256",
161 * See RFC3610, Section 2 (CCM Mode Specification) for more
167 * CCM-128 - M=8, MIC is 8 octets.
168 * CCM-256 - M=16, MIC is 16 octets.
334 "%s", "missing ExtIV for AES-CCM cipher"); in ccmp_decap()
412 * @brief Initialise the AES-CCM nonce flag field in the b0 CCMP block.
415 * b0[0] is the CCM flags field, so the nonce used for B_0 starts at
416 * b0[1]. Amusingly, b0[1] is also flags, but it's the 802.11 AES-CCM
417 * nonce flags field, NOT the CCM flags field.
419 * The AES-CCM nonce flags field is defined in 802.11-2020 12.5.3.3.4
420 * (Construct CCM nonce).
428 * @param b0 the CCM nonce to update (remembering b0[0] is the CCM
429 * nonce flags, and b0[1] is the AES-CCM nonce flags).
437 * 802.11-2020 12.5.33.3.4 (Construct CCM nonce) mentions in ieee80211_crypto_ccmp_init_nonce_flags()
506 * RFC3610, Section 2 (CCM Mode Specification) in ccmp_init_blocks()
510 /* CCM Initial Block: in ccmp_init_blocks()
520 /* Init b0[1] (CCM nonce flags) */ in ccmp_init_blocks()
795 "%s", "AES-CCM decrypt failed; MIC mismatch"); in ccmp_decrypt()