From 7eb2cc363dba02539ed0a586e7f021f810684888 Mon Sep 17 00:00:00 2001 From: Bernhard Schmidt Date: Mon, 22 Feb 2010 17:10:47 +0000 Subject: [PATCH] MFC r203673: Ensure that tkip_mixing_phase1() is called after a rekeying event when using plain s/w crypto. PR: bin/142547 Approved by: rpaulo (mentor) --- sys/net80211/ieee80211_crypto_tkip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/net80211/ieee80211_crypto_tkip.c b/sys/net80211/ieee80211_crypto_tkip.c index f949255b9c68..6e1fda1fc9d2 100644 --- a/sys/net80211/ieee80211_crypto_tkip.c +++ b/sys/net80211/ieee80211_crypto_tkip.c @@ -144,6 +144,7 @@ tkip_setkey(struct ieee80211_key *k) return 0; } k->wk_keytsc = 1; /* TSC starts at 1 */ + ctx->rx_phase1_done = 0; return 1; }