X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=net%2Fmac80211%2Faes_cmac.c;h=bdf0790d89cca6fe3f64c097c84299ac35e1f3d0;hb=bd1a05ee98b06c9a20138c45f96ccfddf3163f93;hp=4192806be3d36884d22ce5830a43cae63d54745d;hpb=41caf0564ea1a8a3b3cb572abc64d5116c150b6c;p=deliverable%2Flinux.git diff --git a/net/mac80211/aes_cmac.c b/net/mac80211/aes_cmac.c index 4192806be3d3..bdf0790d89cc 100644 --- a/net/mac80211/aes_cmac.c +++ b/net/mac80211/aes_cmac.c @@ -145,20 +145,3 @@ void ieee80211_aes_cmac_key_free(struct crypto_cipher *tfm) { crypto_free_cipher(tfm); } - -void ieee80211_aes_cmac_calculate_k1_k2(struct ieee80211_key_conf *keyconf, - u8 *k1, u8 *k2) -{ - u8 l[AES_BLOCK_SIZE] = {}; - struct ieee80211_key *key = - container_of(keyconf, struct ieee80211_key, conf); - - crypto_cipher_encrypt_one(key->u.aes_cmac.tfm, l, l); - - memcpy(k1, l, AES_BLOCK_SIZE); - gf_mulx(k1); - - memcpy(k2, k1, AES_BLOCK_SIZE); - gf_mulx(k2); -} -EXPORT_SYMBOL(ieee80211_aes_cmac_calculate_k1_k2);