Home
last modified time | relevance | path

Searched refs:outPlant (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/utils/
H A Dwifi_randommac_helper.cpp60 std::vector<uint8_t> outPlant = {}; in CalculateRandomMacForWifiDeviceConfig() local
66 if (outPlant.size() < LONG_TO_BYTE_SIZE) { in CalculateRandomMacForWifiDeviceConfig()
71 bytesToLong.assign(outPlant.begin(), outPlant.begin() + LONG_TO_BYTE_SIZE); in CalculateRandomMacForWifiDeviceConfig()
154 outPlant.clear(); in LongLongToBytes()
155 outPlant.emplace_back((value >> OFFSET_VALUE_56) & 0xFF); in LongLongToBytes()
156 outPlant.emplace_back((value >> OFFSET_VALUE_48) & 0xFF); in LongLongToBytes()
157 outPlant.emplace_back((value >> OFFSET_VALUE_40) & 0xFF); in LongLongToBytes()
158 outPlant.emplace_back((value >> OFFSET_VALUE_32) & 0xFF); in LongLongToBytes()
159 outPlant.emplace_back((value >> OFFSET_VALUE_24) & 0xFF); in LongLongToBytes()
160 outPlant.emplace_back((value >> OFFSET_VALUE_16) & 0xFF); in LongLongToBytes()
[all …]
H A Dwifi_randommac_helper.h78 static void LongLongToBytes(unsigned long long value, std::vector<uint8_t> &outPlant);
H A Dwifi_encryption_util.h144 const std::string &data, std::vector<uint8_t> &outPlant);
H A Dwifi_encryption_util.cpp523 const std::string &data, std::vector<uint8_t> &outPlant) in WifiGenerateMacRandomizationSecret() argument
561 outPlant.clear(); in WifiGenerateMacRandomizationSecret()
563 outPlant.emplace_back(hashText.data[i]); in WifiGenerateMacRandomizationSecret()