Home
last modified time | relevance | path

Searched refs:HexEncode (Results 1 – 14 of 14) 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()
/system/update_engine/payload_consumer/
Dverified_source_fd.cc101 << base::HexEncode(source_hash.data(), source_hash.size()) in ChooseSourceFD()
103 << base::HexEncode(expected_source_hash.data(), in ChooseSourceFD()
Dinstall_plan.cc117 base::HexEncode(partition.source_hash.data(), in ToString()
122 base::HexEncode(partition.target_hash.data(), in ToString()
141 {"hash", base::HexEncode(payload.hash.data(), payload.hash.size())}, in ToString()
Dpartition_writer.cc323 << base::HexEncode(expected_source_hash.data(), in ValidateSourceHash()
326 << base::HexEncode(calculated_hash.data(), in ValidateSourceHash()
Ddelta_performer.cc268 string sha256 = HexEncode(info.hash()); in LogPartitionInfoHash()
1121 << ". Expected hash = " << HexEncode(expected_op_hash); in ValidateOperationHash()
1124 << HexEncode(calculated_op_hash); in ValidateOperationHash()
1157 << HexEncode(payload_hash_calculator_.raw_hash()) in VerifyPayload()
1158 << ", expected hash: " << HexEncode(update_check_response_hash); in VerifyPayload()
Dfilesystem_verifier_action.cc436 << 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()
289 << HexEncode(block_info.sha256_hash()) in Lz4Patch()
290 << ", actual hash: " << HexEncode(actual_hash); in Lz4Patch()
Dlz4diff_compress.cc248 out << ", sha256_hash: " << HexEncode(info.sha256_hash()); in operator <<()
/system/update_engine/common/
Dutils.h540 std::string HexEncode(const brillo::Blob& blob) noexcept;
541 std::string HexEncode(const std::string_view blob) noexcept;
544 std::string HexEncode(const std::array<uint8_t, kSize> blob) noexcept { in HexEncode() function
545 return base::HexEncode(blob.data(), blob.size()); in HexEncode()
Dhash_calculator.cc131 return HexEncode(hash); in SHA256Digest()
Dutils.cc1112 std::string HexEncode(const brillo::Blob& blob) noexcept { in HexEncode() function
1113 return base::HexEncode(blob.data(), blob.size()); in HexEncode()
1116 std::string HexEncode(const std::string_view blob) noexcept { in HexEncode() function
1117 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.cc1157 << " hash=" << HexEncode(hash); in InitializePartitionInfo()