/ohos5.0/foundation/distributedhardware/device_manager/test/commonfuzztest/generateencrypteduuid_fuzzer/ |
H A D | generate_encrypted_uuid_fuzzer.cpp | 32 std::string encryptedUuid(reinterpret_cast<const char*>(data), size); in GenerateEncryptedUuidFuzzTest() 35 DeviceManagerImpl::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid); in GenerateEncryptedUuidFuzzTest()
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/communicator/src/ |
H A D | device_manager_adapter.cpp | 661 std::string encryptedUuid; in CalcClientUuid() local 662 …uto ret = DeviceManager::GetInstance().GenerateEncryptedUuid(PKG_NAME, uuid, appId, encryptedUuid); in CalcClientUuid() 667 return encryptedUuid; in CalcClientUuid() 742 std::string encryptedUuid; in GetEncryptedUuidByNetworkId() local 743 …ret = DeviceManager::GetInstance().GetEncryptedUuidByNetworkId(PKG_NAME, networkId, encryptedUuid); in GetEncryptedUuidByNetworkId() 748 return encryptedUuid; in GetEncryptedUuidByNetworkId()
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/udmf/preprocess/ |
H A D | preprocess_utils.cpp | 128 …std::string encryptedUuid = DistributedData::DeviceManagerAdapter::GetInstance().CalcClientUuid(" … in GetLocalDeviceId() local 129 return encryptedUuid; in GetLocalDeviceId()
|
/ohos5.0/foundation/distributedhardware/device_manager/test/unittest/ |
H A D | UTTest_device_manager_impl.cpp | 1617 std::string encryptedUuid = ""; variable 1618 …32_t ret = DeviceManager::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid); 1621 ret = DeviceManager::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid); 1625 ret = DeviceManager::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid); 1628 ret = DeviceManager::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid); 1633 ret = DeviceManager::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid);
|
H A D | UTTest_device_manager_service.cpp | 1486 std::string encryptedUuid; variable 1487 …t = DeviceManagerService::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid); 1496 std::string encryptedUuid; variable 1497 …t = DeviceManagerService::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid);
|
/ohos5.0/foundation/filemanagement/dfs_service/test/mock/ |
H A D | device_manager_impl_mock.cpp | 256 std::string &encryptedUuid) in GenerateEncryptedUuid() argument
|
/ohos5.0/foundation/distributedhardware/device_manager/services/service/include/ |
H A D | device_manager_service.h | 151 std::string &encryptedUuid);
|
/ohos5.0/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/include/ |
H A D | device_manager.h | 322 std::string &encryptedUuid) = 0;
|
H A D | device_manager_impl.h | 313 const std::string &appId, std::string &encryptedUuid) override;
|
/ohos5.0/foundation/distributedhardware/device_manager/services/service/src/ |
H A D | device_manager_service.cpp | 999 const std::string &appId, std::string &encryptedUuid) in GenerateEncryptedUuid() argument 1005 encryptedUuid = Crypto::Sha256(appId + "_" + uuid); in GenerateEncryptedUuid() 1006 LOGI("encryptedUuid = %{public}s.", GetAnonyString(encryptedUuid).c_str()); in GenerateEncryptedUuid()
|
/ohos5.0/foundation/distributedhardware/device_manager/services/service/src/ipc/standard/ |
H A D | ipc_cmd_parser.cpp | 830 std::string encryptedUuid; in ON_IPC_CMD() local 832 …t = DeviceManagerService::GetInstance().GenerateEncryptedUuid(pkgName, uuid, appId, encryptedUuid); in ON_IPC_CMD() 837 if (!reply.WriteString(encryptedUuid)) { in ON_IPC_CMD()
|
/ohos5.0/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ |
H A D | device_manager_impl.cpp | 1265 const std::string &appId, std::string &encryptedUuid) in GenerateEncryptedUuid() argument 1290 encryptedUuid = rsp->GetUuid(); in GenerateEncryptedUuid() 1291 LOGI("Complete, encryptedUuid: %{public}s", GetAnonyString(encryptedUuid).c_str()); in GenerateEncryptedUuid()
|