Commit c9be5632 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: ks7010: avoid camel cases in MichaelMICFunction

This commit replace camel cases for name and params used in
MichaelMICFunction. This improves a bit readability.
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f47ecc0c
...@@ -341,12 +341,12 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv, ...@@ -341,12 +341,12 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
memcpy(&recv_mic[0], (priv->rxp) + ((priv->rx_size) - 8), 8); memcpy(&recv_mic[0], (priv->rxp) + ((priv->rx_size) - 8), 8);
priv->rx_size = priv->rx_size - 8; priv->rx_size = priv->rx_size - 8;
if (auth_type > 0 && auth_type < 4) { /* auth_type check */ if (auth_type > 0 && auth_type < 4) { /* auth_type check */
MichaelMICFunction(&michael_mic, michael_mic_function(&michael_mic,
(uint8_t *)key->rx_mic_key, (uint8_t *)key->rx_mic_key,
(uint8_t *)priv->rxp, (uint8_t *)priv->rxp,
(int)priv->rx_size, (int)priv->rx_size,
(uint8_t)0, /* priority */ (uint8_t)0, /* priority */
(uint8_t *)michael_mic.result); (uint8_t *)michael_mic.result);
} }
if (memcmp(michael_mic.result, recv_mic, 8) != 0) { if (memcmp(michael_mic.result, recv_mic, 8) != 0) {
now = jiffies; now = jiffies;
...@@ -1172,12 +1172,12 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb) ...@@ -1172,12 +1172,12 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb)
pp->auth_type = cpu_to_le16((uint16_t)TYPE_AUTH); pp->auth_type = cpu_to_le16((uint16_t)TYPE_AUTH);
} else { } else {
if (priv->wpa.pairwise_suite == IW_AUTH_CIPHER_TKIP) { if (priv->wpa.pairwise_suite == IW_AUTH_CIPHER_TKIP) {
MichaelMICFunction(&michael_mic, michael_mic_function(&michael_mic,
(uint8_t *)priv->wpa.key[0].tx_mic_key, (uint8_t *)priv->wpa.key[0].tx_mic_key,
(uint8_t *)&pp->data[0], (uint8_t *)&pp->data[0],
(int)skb_len, (int)skb_len,
(uint8_t)0, /* priority */ (uint8_t)0, /* priority */
(uint8_t *)michael_mic.result); (uint8_t *)michael_mic.result);
memcpy(p, michael_mic.result, 8); memcpy(p, michael_mic.result, 8);
length += 8; length += 8;
skb_len += 8; skb_len += 8;
......
...@@ -123,9 +123,8 @@ void MichaelGetMIC(struct michael_mic_t *Mic, uint8_t *dst) ...@@ -123,9 +123,8 @@ void MichaelGetMIC(struct michael_mic_t *Mic, uint8_t *dst)
MichaelClear(Mic); MichaelClear(Mic);
} }
void MichaelMICFunction(struct michael_mic_t *Mic, u8 *Key, void michael_mic_function(struct michael_mic_t *mic, u8 *key,
u8 *Data, int Len, u8 priority, u8 *data, int len, u8 priority, u8 *result)
u8 *Result)
{ {
u8 pad_data[4] = { priority, 0, 0, 0 }; u8 pad_data[4] = { priority, 0, 0, 0 };
// Compute the MIC value // Compute the MIC value
...@@ -138,9 +137,9 @@ void MichaelMICFunction(struct michael_mic_t *Mic, u8 *Key, ...@@ -138,9 +137,9 @@ void MichaelMICFunction(struct michael_mic_t *Mic, u8 *Key,
* |DA|SA|Priority|0 |Data|M0|M1|M2|M3|M4|M5|M6|M7| * |DA|SA|Priority|0 |Data|M0|M1|M2|M3|M4|M5|M6|M7|
* +--+--+--------+--+----+--+--+--+--+--+--+--+--+ * +--+--+--------+--+----+--+--+--+--+--+--+--+--+
*/ */
MichaelInitializeFunction(Mic, Key); MichaelInitializeFunction(mic, key);
MichaelAppend(Mic, (uint8_t *)Data, 12); /* |DA|SA| */ MichaelAppend(mic, (uint8_t *)data, 12); /* |DA|SA| */
MichaelAppend(Mic, pad_data, 4); /* |Priority|0|0|0| */ MichaelAppend(mic, pad_data, 4); /* |Priority|0|0|0| */
MichaelAppend(Mic, (uint8_t *)(Data + 12), Len - 12); /* |Data| */ MichaelAppend(mic, (uint8_t *)(data + 12), len - 12); /* |Data| */
MichaelGetMIC(Mic, Result); MichaelGetMIC(mic, result);
} }
...@@ -20,6 +20,5 @@ struct michael_mic_t { ...@@ -20,6 +20,5 @@ struct michael_mic_t {
u8 result[8]; u8 result[8];
}; };
void MichaelMICFunction(struct michael_mic_t *Mic, u8 *Key, void michael_mic_function(struct michael_mic_t *mic, u8 *key,
u8 *Data, int Len, u8 priority, u8 *data, int len, u8 priority, u8 *result);
u8 *Result);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment