Searched defs:dwKeyIndex (Results 1 - 7 of 7) sorted by relevance

/drivers/staging/vt6655/
H A Dkey.c119 * dwKeyIndex - Key Index (0xFFFFFFFF means pairwise key)
129 unsigned long dwKeyIndex,
141 if (dwKeyIndex == 0xFFFFFFFF) {
148 } else if (dwKeyIndex < MAX_GROUP_KEY) {
149 if (pTable->KeyTable[i].GroupKey[dwKeyIndex].bKeyValid) {
150 *pKey = &(pTable->KeyTable[i].GroupKey[dwKeyIndex]);
170 * dwKeyIndex - Key index (reference to NDIS DDK)
183 unsigned long dwKeyIndex,
197 pr_debug("Enter KeybSetKey: %lX\n", dwKeyIndex);
208 if ((dwKeyIndex
126 KeybGetKey( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwKeyIndex, PSKeyItem *pKey ) argument
180 KeybSetKey( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwKeyIndex, unsigned long uKeyLength, u64 *pKeyRSC, unsigned char *pbyKey, unsigned char byKeyDecMode, void __iomem *dwIoBase, unsigned char byLocalID ) argument
350 KeybRemoveKey( PSKeyManagement pTable, unsigned char *pbyBSSID, unsigned long dwKeyIndex, void __iomem *dwIoBase ) argument
453 KeyvRemoveWEPKey( PSKeyManagement pTable, unsigned long dwKeyIndex, void __iomem *dwIoBase ) argument
608 KeybSetDefaultKey( PSKeyManagement pTable, unsigned long dwKeyIndex, unsigned long uKeyLength, u64 *pKeyRSC, unsigned char *pbyKey, unsigned char byKeyDecMode, void __iomem *dwIoBase, unsigned char byLocalID ) argument
717 KeybSetAllGroupKey( PSKeyManagement pTable, unsigned long dwKeyIndex, unsigned long uKeyLength, u64 *pKeyRSC, unsigned char *pbyKey, unsigned char byKeyDecMode, void __iomem *dwIoBase, unsigned char byLocalID ) argument
[all...]
H A Dhostap.c411 unsigned long dwKeyIndex = 0; local
451 pMgmt->sNodeDBTable[iNodeIndex].dwKeyIndex,
458 pMgmt->sNodeDBTable[iNodeIndex].dwKeyIndex = 0;
481 dwKeyIndex = (unsigned long)(param->u.crypt.idx);
483 pDevice->byKeyIndex = (unsigned char)dwKeyIndex;
485 dwKeyIndex |= (1 << 31);
491 dwKeyIndex & ~(BIT30 | USE_KEYRSC),
501 dwKeyIndex |= (1 << 30); /* set pairwise key */
504 dwKeyIndex & ~(USE_KEYRSC),
524 pMgmt->sNodeDBTable[iNodeIndex].dwKeyIndex
[all...]
H A Dioctl.c67 unsigned long dwKeyIndex = 0; local
225 dwKeyIndex = ii | (1 << 31);
227 dwKeyIndex = ii;
230 dwKeyIndex,
H A Dwpactl.c192 unsigned long dwKeyIndex = 0; variable
232 dwKeyIndex = (unsigned long)(param->u.wpa_key.key_index);
235 if (dwKeyIndex > 3) {
239 pDevice->byKeyIndex = (unsigned char)dwKeyIndex;
241 dwKeyIndex |= (1 << 31);
244 dwKeyIndex & ~(BIT30 | USE_KEYRSC),
279 dwKeyIndex |= 1 << 29;
283 pr_debug("return dwKeyIndex > 3\n");
294 dwKeyIndex |= (1 << 31);
338 dwKeyIndex,
[all...]
H A Dkey.h65 unsigned long dwKeyIndex; member in struct:tagSKeyItem
102 unsigned long dwKeyIndex,
109 unsigned long dwKeyIndex,
120 unsigned long dwKeyIndex,
132 unsigned long dwKeyIndex,
156 unsigned long dwKeyIndex,
167 unsigned long dwKeyIndex,
H A Diwctl.c1221 unsigned long dwKeyIndex = (unsigned long)(wrq->flags & IW_ENCODE_INDEX); local
1241 if (dwKeyIndex > WLAN_WEP_NKEYS) {
1246 if (dwKeyIndex < 1 && ((wrq->flags & IW_ENCODE_NOKEY) == 0)) {//set default key
1248 dwKeyIndex = pDevice->byKeyIndex;
1250 dwKeyIndex = 0;
1252 dwKeyIndex--;
1269 (int)dwKeyIndex);
1284 (unsigned long)(dwKeyIndex | (1 << 31)),
1294 pDevice->byKeyIndex = (unsigned char)dwKeyIndex;
1309 if (pkeytab->GroupKey[(unsigned char)dwKeyIndex]
[all...]
H A Dbssdb.h189 unsigned long dwKeyIndex; member in struct:tagKnownNodeDB

Completed in 69 milliseconds