HomeSort by relevance Sort by last modified time
    Searched refs:pKeyDesc (Results 1 - 2 of 2) sorted by null

  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
keyParserExternal.c 123 OS_802_11_KEY *pKeyDesc;
140 pKeyDesc = (OS_802_11_KEY*)pKeyData;
143 MAC_COPY (keyBuffer, pKeyDesc->BSSID);
145 if (pKeyDesc->KeyIndex & EXT_KEY_RSC_KEY_MASK)
147 os_memoryCopy(pKeyParser->hOs, &keyBuffer[MAC_ADDR_LEN], (TI_UINT8*)&(pKeyDesc->KeyRSC), KEY_RSC_LEN);
166 if((pKeyDesc->KeyLength != WEP_KEY_LEN_40) &&
167 (pKeyDesc->KeyLength != WEP_KEY_LEN_104) &&
168 (pKeyDesc->KeyLength != WEP_KEY_LEN_232) &&
169 (pKeyDesc->KeyLength != TKIP_KEY_LEN) &&
170 (pKeyDesc->KeyLength != AES_KEY_LEN)
    [all...]
keyParserWep.c 120 OS_802_11_KEY *pKeyDesc;
129 pKeyDesc = (OS_802_11_KEY*)pKeyData;
131 if ((pKeyDesc->KeyLength < MIN_KEY_LEN ) || (pKeyDesc->KeyLength >= MAX_KEY_LEN ))
133 TRACE1(pKeyParser->hReport, REPORT_SEVERITY_ERROR, "WEP_KEY_PARSER: ERROR: Key Length out of bounds=%d\n", pKeyDesc->KeyLength);
137 if (pKeyDesc->KeyIndex & WEP_KEY_REMAIN_BITS_MASK)
144 securityKey.encLen = (TI_UINT16)pKeyDesc->KeyLength;
145 securityKey.keyIndex = pKeyDesc->KeyIndex;
146 os_memoryCopy(pKeyParser->hOs, (void *)securityKey.encKey, pKeyDesc->KeyMaterial, pKeyDesc->KeyLength)
    [all...]

Completed in 287 milliseconds