@@ -501,7 +501,7 @@ int crypto_cipher_key_len(enum crypto_cipher cipher)
return 32;
case CRYPTO_CIPHER_CCMP:
return 16;
- case CRYPTO_CIPHER_BIP:
+ case CRYPTO_CIPHER_BIP_CMAC:
return 16;
}
@@ -30,7 +30,7 @@ enum crypto_cipher {
CRYPTO_CIPHER_WEP104 = 0x000fac05,
CRYPTO_CIPHER_TKIP = 0x000fac02,
CRYPTO_CIPHER_CCMP = 0x000fac04,
- CRYPTO_CIPHER_BIP = 0x000fac06,
+ CRYPTO_CIPHER_BIP_CMAC = 0x000fac06,
};
enum crypto_akm {
@@ -429,7 +429,7 @@ uint32_t ie_rsn_cipher_suite_to_cipher(enum ie_rsn_cipher_suite suite)
case IE_RSN_CIPHER_SUITE_WEP104:
return CRYPTO_CIPHER_WEP104;
case IE_RSN_CIPHER_SUITE_BIP:
- return CRYPTO_CIPHER_BIP;
+ return CRYPTO_CIPHER_BIP_CMAC;
default:
return 0;
}
@@ -1684,7 +1684,7 @@ static void netdev_set_igtk(struct handshake_state *hs, uint16_t key_index,
}
switch (cipher) {
- case CRYPTO_CIPHER_BIP:
+ case CRYPTO_CIPHER_BIP_CMAC:
memcpy(igtk_buf, igtk, 16);
break;
default:
@@ -1215,7 +1215,7 @@ static void parse_supported_ciphers(struct wiphy *wiphy, const void *data,
case CRYPTO_CIPHER_WEP104:
wiphy->supported_ciphers |= IE_RSN_CIPHER_SUITE_WEP104;
break;
- case CRYPTO_CIPHER_BIP:
+ case CRYPTO_CIPHER_BIP_CMAC:
wiphy->supported_ciphers |= IE_RSN_CIPHER_SUITE_BIP;
break;
default: /* TODO: Support other ciphers */
@@ -175,7 +175,7 @@ static const uint32_t hwsim_supported_ciphers[] = {
CRYPTO_CIPHER_WEP104,
CRYPTO_CIPHER_TKIP,
CRYPTO_CIPHER_CCMP,
- CRYPTO_CIPHER_BIP,
+ CRYPTO_CIPHER_BIP_CMAC,
};
static uint32_t hwsim_ciphers[L_ARRAY_SIZE(hwsim_supported_ciphers)];
static int hwsim_num_ciphers = 0;
@@ -196,7 +196,7 @@ static const struct hwsim_support cipher_map[] = {
{ "wep104", CRYPTO_CIPHER_WEP104 },
{ "tkip", CRYPTO_CIPHER_TKIP },
{ "ccmp", CRYPTO_CIPHER_CCMP },
- { "bip", CRYPTO_CIPHER_BIP },
+ { "bip", CRYPTO_CIPHER_BIP_CMAC },
{ }
};