Searched refs:mic_iv (Results 1 – 3 of 3) sorted by relevance
914 static void construct_mic_iv(u8 *mic_iv, sint qc_exists, sint a4_exists, in construct_mic_iv() argument919 mic_iv[0] = 0x59; in construct_mic_iv()921 mic_iv[1] = mpdu[30] & 0x0f; /* QoS_TC */ in construct_mic_iv()923 mic_iv[1] = mpdu[24] & 0x0f; /* mute bits 7-4 */ in construct_mic_iv()925 mic_iv[1] = 0x00; in construct_mic_iv()927 mic_iv[i] = mpdu[i + 8]; in construct_mic_iv()929 mic_iv[i] = pn_vector[13 - i]; /* mic_iv[8:13] = PN[5:0] */ in construct_mic_iv()930 mic_iv[14] = (unsigned char) (payload_length / 256); in construct_mic_iv()931 mic_iv[15] = (unsigned char) (payload_length % 256); in construct_mic_iv()1041 u8 mic_iv[16]; in aes_cipher() local[all …]
960 static void construct_mic_iv(u8 *mic_iv, int qc_exists, int a4_exists, u8 *mpdu, in construct_mic_iv() argument965 mic_iv[0] = 0x59; in construct_mic_iv()967 mic_iv[1] = mpdu[30] & 0x0f; /* QoS_TC */ in construct_mic_iv()969 mic_iv[1] = mpdu[24] & 0x0f; /* mute bits 7-4 */ in construct_mic_iv()971 mic_iv[1] = 0x00; in construct_mic_iv()973 mic_iv[i] = mpdu[i + 8]; /* mic_iv[2:7] = A2[0:5] = mpdu[10:15] */ in construct_mic_iv()975 mic_iv[i] = pn_vector[13 - i]; /* mic_iv[8:13] = PN[5:0] */ in construct_mic_iv()976 mic_iv[14] = (unsigned char)(payload_length / 256); in construct_mic_iv()977 mic_iv[15] = (unsigned char)(payload_length % 256); in construct_mic_iv()1091 u8 mic_iv[16]; in aes_cipher() local[all …]
1141 u8 *mic_iv, in construct_mic_iv() argument1152 mic_iv[0] = 0x59; in construct_mic_iv()1155 mic_iv[1] = mpdu[30] & 0x0f; /* QoS_TC */ in construct_mic_iv()1158 mic_iv[1] = mpdu[24] & 0x0f; /* mute bits 7-4 */ in construct_mic_iv()1161 mic_iv[1] = 0x00; in construct_mic_iv()1165 mic_iv[1] |= BIT(4); in construct_mic_iv()1168 mic_iv[i] = mpdu[i + 8]; /* mic_iv[2:7] = A2[0:5] = mpdu[10:15] */ in construct_mic_iv()1171 mic_iv[i] = pn_vector[i - 8]; /* mic_iv[8:13] = PN[0:5] */ in construct_mic_iv()1174 mic_iv[i] = pn_vector[13 - i]; /* mic_iv[8:13] = PN[5:0] */ in construct_mic_iv()1176 mic_iv[14] = (unsigned char) (payload_length / 256); in construct_mic_iv()[all …]