Home
last modified time | relevance | path

Searched refs:hexMap (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dkey_blob.h129 const char *hexMap = "0123456789abcdef"; in ToString() local
132 hex = hex + hexMap[(data[i] & 0xF0) >> 4] + hexMap[data[i] & 0x0F]; // higher 4 bits in ToString()
/ohos5.0/commonlibrary/ets_utils/js_util_module/util/
H A Djs_uuid.cpp31 static const std::map<char, unsigned char> hexMap = { in CharToHex() local
56 auto it = hexMap.find(in); in CharToHex()
57 if (it != hexMap.end()) { in CharToHex()