/* * Copyright (c) 2025 Shenzhen Kaihong Digital Industry Development Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "wfd_utils.h" #include #include #include #include #include #include #include "sharing_log.h" #include "utils/crypto.h" namespace OHOS { namespace Sharing { constexpr int32_t HEX_TO_UINT8 = 2; constexpr int WIDTH = 4; constexpr unsigned char MASK = 0x0F; const int BYTE_HEX_LEN = 2; std::string ByteToHexStr(const std::vector &data, uint32_t pos, uint32_t len, bool isNeed0x) { std::stringstream ss; if (isNeed0x) { ss << "0x" << std::hex << std::setfill('0'); } else { ss << std::hex << std::setfill('0'); } for (uint32_t i = pos; (i < (pos + len)) && (i < data.size()); i++) { ss << std::setw(BYTE_HEX_LEN) << static_cast(data[i]); } return ss.str(); } std::string GetUdidHash(std::string &udid) { if (udid.empty()) { return ""; } uint32_t udidLen = udid.size(); std::vector hashIdResult = GenerateSha256HashId(reinterpret_cast(udid.c_str()), udidLen); if (hashIdResult.empty()) { return ""; } std::string ret = ByteToHexStr(hashIdResult, 0, hashIdResult.size(), false); return ret; } std::string GetAddressHash(const std::string &address) { std::string addressStr = std::string(address); return GetUdidHash(addressStr); } std::string Sha256(const std::string &text, bool isUpper) { return Sha256(text.data(), text.size(), isUpper); } std::string Sha256(const void *data, size_t size, bool isUpper) { unsigned char hash[SHA256_DIGEST_LENGTH * HEX_TO_UINT8 + 1] = ""; SHA256_CTX ctx; SHA256_Init(&ctx); SHA256_Update(&ctx, data, size); SHA256_Final(&hash[SHA256_DIGEST_LENGTH], &ctx); const char* hexCode = isUpper ? "0123456789ABCDEF" : "0123456789abcdef"; for (int32_t i = 0; i < SHA256_DIGEST_LENGTH; ++i) { unsigned char value = hash[SHA256_DIGEST_LENGTH + i]; hash[i * HEX_TO_UINT8] = hexCode[(value >> WIDTH) & MASK]; hash[i * HEX_TO_UINT8 + 1] = hexCode[value & MASK]; } hash[SHA256_DIGEST_LENGTH * HEX_TO_UINT8] = 0; std::stringstream ss; ss << hash; return ss.str(); } } // namespace Sharing } // namespace OHOS