ppk               109 net/mac80211/tkip.c 	u16 ppk[6];
ppk               113 net/mac80211/tkip.c 	ppk[0] = p1k[0];
ppk               114 net/mac80211/tkip.c 	ppk[1] = p1k[1];
ppk               115 net/mac80211/tkip.c 	ppk[2] = p1k[2];
ppk               116 net/mac80211/tkip.c 	ppk[3] = p1k[3];
ppk               117 net/mac80211/tkip.c 	ppk[4] = p1k[4];
ppk               118 net/mac80211/tkip.c 	ppk[5] = p1k[4] + tsc_IV16;
ppk               120 net/mac80211/tkip.c 	ppk[0] += tkipS(ppk[5] ^ get_unaligned_le16(tk + 0));
ppk               121 net/mac80211/tkip.c 	ppk[1] += tkipS(ppk[0] ^ get_unaligned_le16(tk + 2));
ppk               122 net/mac80211/tkip.c 	ppk[2] += tkipS(ppk[1] ^ get_unaligned_le16(tk + 4));
ppk               123 net/mac80211/tkip.c 	ppk[3] += tkipS(ppk[2] ^ get_unaligned_le16(tk + 6));
ppk               124 net/mac80211/tkip.c 	ppk[4] += tkipS(ppk[3] ^ get_unaligned_le16(tk + 8));
ppk               125 net/mac80211/tkip.c 	ppk[5] += tkipS(ppk[4] ^ get_unaligned_le16(tk + 10));
ppk               126 net/mac80211/tkip.c 	ppk[0] += ror16(ppk[5] ^ get_unaligned_le16(tk + 12), 1);
ppk               127 net/mac80211/tkip.c 	ppk[1] += ror16(ppk[0] ^ get_unaligned_le16(tk + 14), 1);
ppk               128 net/mac80211/tkip.c 	ppk[2] += ror16(ppk[1], 1);
ppk               129 net/mac80211/tkip.c 	ppk[3] += ror16(ppk[2], 1);
ppk               130 net/mac80211/tkip.c 	ppk[4] += ror16(ppk[3], 1);
ppk               131 net/mac80211/tkip.c 	ppk[5] += ror16(ppk[4], 1);
ppk               134 net/mac80211/tkip.c 	*rc4key++ = ((ppk[5] ^ get_unaligned_le16(tk)) >> 1) & 0xFF;
ppk               137 net/mac80211/tkip.c 		put_unaligned_le16(ppk[i], rc4key + 2 * i);