Changeset d7dadcb4 in mainline for uspace/lib/ieee80211/src/ieee80211.c
- Timestamp:
- 2015-04-08T10:54:31Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 053fc2b
- Parents:
- 1dcc0b9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ieee80211/src/ieee80211.c
r1dcc0b9 rd7dadcb4 56 56 }; 57 57 58 /** Broadcast MAC address used to spread probe request through channel. */58 /** Broadcast MAC address. */ 59 59 static const uint8_t ieee80211_broadcast_mac_addr[] = { 60 60 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF … … 1407 1407 1408 1408 /* Compute MIC of key frame data from KCK part of PTK. */ 1409 uint8_t mic[ SHA1_HASH_LENGTH];1409 uint8_t mic[hash_sel]; 1410 1410 hmac(ptk, 16, (uint8_t *) output_key_frame, 1411 1411 output_size - sizeof(eth_header_t), mic, hash_sel);
Note:
See TracChangeset
for help on using the changeset viewer.