Searched refs:mic_iv (Results 1 – 3 of 3) sorted by relevance
894 static void construct_mic_iv(u8 *mic_iv, sint qc_exists, sint a4_exists, in construct_mic_iv() argument899 mic_iv[0] = 0x59; in construct_mic_iv()901 mic_iv[1] = mpdu[30] & 0x0f; /* QoS_TC */ in construct_mic_iv()903 mic_iv[1] = mpdu[24] & 0x0f; /* mute bits 7-4 */ in construct_mic_iv()905 mic_iv[1] = 0x00; in construct_mic_iv()907 mic_iv[i] = mpdu[i + 8]; in construct_mic_iv()909 mic_iv[i] = pn_vector[13 - i]; /* mic_iv[8:13] = PN[5:0] */ in construct_mic_iv()910 mic_iv[14] = (unsigned char) (payload_length / 256); in construct_mic_iv()911 mic_iv[15] = (unsigned char) (payload_length % 256); in construct_mic_iv()1021 u8 mic_iv[16]; in aes_cipher() local[all …]
959 static void construct_mic_iv(u8 *mic_iv, int qc_exists, int a4_exists, u8 *mpdu, in construct_mic_iv() argument964 mic_iv[0] = 0x59; in construct_mic_iv()966 mic_iv[1] = mpdu[30] & 0x0f; /* QoS_TC */ in construct_mic_iv()968 mic_iv[1] = mpdu[24] & 0x0f; /* mute bits 7-4 */ in construct_mic_iv()970 mic_iv[1] = 0x00; in construct_mic_iv()972 mic_iv[i] = mpdu[i + 8]; /* mic_iv[2:7] = A2[0:5] = mpdu[10:15] */ in construct_mic_iv()974 mic_iv[i] = pn_vector[13 - i]; /* mic_iv[8:13] = PN[5:0] */ in construct_mic_iv()975 mic_iv[14] = (unsigned char)(payload_length / 256); in construct_mic_iv()976 mic_iv[15] = (unsigned char)(payload_length % 256); in construct_mic_iv()1090 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 …]