Home
last modified time | relevance | path

Searched refs:HexEncode (Results 1 – 15 of 15) sorted by relevance

/system/update_engine/aosp/
Dota_extractor.cc142 CHECK_EQ(HexEncode(ToStringView(actual_hash)), in ExtractImagesFromOTA()
143 HexEncode(op.src_sha256_hash())); in ExtractImagesFromOTA()
155 CHECK_EQ(HexEncode(ToStringView(actual_hash)), in ExtractImagesFromOTA()
156 HexEncode(op.data_sha256_hash())); in ExtractImagesFromOTA()
187 CHECK_EQ(HexEncode(ToStringView(actual_hash)), in ExtractImagesFromOTA()
188 HexEncode(partition.new_partition_info().hash())) in ExtractImagesFromOTA()
Dhardware_android.cc109 base::HexEncode(vbmeta_digest, AVB_SHA256_DIGEST_SIZE); in CalculateVbmetaDigestForInactiveSlot()
Dupdate_attempter_android.cc597 HexEncode(expected_metadata_hash) + in VerifyPayloadParseManifest()
598 " actual hash: " + HexEncode(metadata_hash), in VerifyPayloadParseManifest()
602 << HexEncode(metadata_hash); in VerifyPayloadParseManifest()
/system/update_engine/payload_consumer/
Dverified_source_fd.cc131 << base::HexEncode(source_hash.data(), source_hash.size()) in ChooseSourceFD()
133 << base::HexEncode(expected_source_hash.data(), in ChooseSourceFD()
Dinstall_plan.cc116 base::HexEncode(partition.source_hash.data(), in ToString()
121 base::HexEncode(partition.target_hash.data(), in ToString()
140 {"hash", base::HexEncode(payload.hash.data(), payload.hash.size())}, in ToString()
Dpartition_writer.cc322 << base::HexEncode(expected_source_hash.data(), in ValidateSourceHash()
325 << base::HexEncode(calculated_hash.data(), in ValidateSourceHash()
Ddelta_performer.cc266 string sha256 = HexEncode(info.hash()); in LogPartitionInfoHash()
1300 << ". Expected hash = " << HexEncode(expected_op_hash); in ValidateOperationHash()
1303 << HexEncode(calculated_op_hash); in ValidateOperationHash()
1336 << HexEncode(payload_hash_calculator_.raw_hash()) in VerifyPayload()
1337 << ", expected hash: " << HexEncode(update_check_response_hash); in VerifyPayload()
Dfilesystem_verifier_action.cc487 << HexEncode(hasher_->raw_hash()); in FinishPartitionHashing()
/system/update_engine/lz4diff/
Dlz4patch.cc128 << HexEncode(patch_data.substr(0, kLz4diffMagic.size())) in ParseLz4DifffPatch()
129 << ", expected: " << HexEncode(kLz4diffMagic); in ParseLz4DifffPatch()
293 << HexEncode(block_info.sha256_hash()) in Lz4Patch()
294 << ", actual hash: " << HexEncode(actual_hash); in Lz4Patch()
Dlz4diff_compress.cc248 out << ", sha256_hash: " << HexEncode(info.sha256_hash()); in operator <<()
/system/update_engine/common/
Dutils.h544 std::string HexEncode(const brillo::Blob& blob) noexcept;
545 std::string HexEncode(const std::string_view blob) noexcept;
548 std::string HexEncode(const std::array<uint8_t, kSize> blob) noexcept { in HexEncode() function
549 return base::HexEncode(blob.data(), blob.size()); in HexEncode()
Dhash_calculator.cc131 return HexEncode(hash); in SHA256Digest()
Dutils.cc1257 std::string HexEncode(const brillo::Blob& blob) noexcept { in HexEncode() function
1258 return base::HexEncode(blob.data(), blob.size()); in HexEncode()
1261 std::string HexEncode(const std::string_view blob) noexcept { in HexEncode() function
1262 return base::HexEncode(blob.data(), blob.size()); in HexEncode()
/system/update_engine/
Dcertificate_checker.cc161 string digest_string = base::HexEncode(digest, digest_length); in CheckCertificateChange()
/system/update_engine/payload_generator/
Ddelta_diff_utils.cc1158 << " hash=" << HexEncode(hash); in InitializePartitionInfo()