Searched refs:HexEncode (Results 1 – 15 of 15) sorted by relevance
/system/update_engine/aosp/ |
D | ota_extractor.cc | 142 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()
|
D | hardware_android.cc | 109 base::HexEncode(vbmeta_digest, AVB_SHA256_DIGEST_SIZE); in CalculateVbmetaDigestForInactiveSlot()
|
D | update_attempter_android.cc | 597 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/ |
D | verified_source_fd.cc | 131 << base::HexEncode(source_hash.data(), source_hash.size()) in ChooseSourceFD() 133 << base::HexEncode(expected_source_hash.data(), in ChooseSourceFD()
|
D | install_plan.cc | 116 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()
|
D | partition_writer.cc | 322 << base::HexEncode(expected_source_hash.data(), in ValidateSourceHash() 325 << base::HexEncode(calculated_hash.data(), in ValidateSourceHash()
|
D | delta_performer.cc | 266 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()
|
D | filesystem_verifier_action.cc | 487 << HexEncode(hasher_->raw_hash()); in FinishPartitionHashing()
|
/system/update_engine/lz4diff/ |
D | lz4patch.cc | 128 << 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()
|
D | lz4diff_compress.cc | 248 out << ", sha256_hash: " << HexEncode(info.sha256_hash()); in operator <<()
|
/system/update_engine/common/ |
D | utils.h | 544 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()
|
D | hash_calculator.cc | 131 return HexEncode(hash); in SHA256Digest()
|
D | utils.cc | 1257 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/ |
D | certificate_checker.cc | 161 string digest_string = base::HexEncode(digest, digest_length); in CheckCertificateChange()
|
/system/update_engine/payload_generator/ |
D | delta_diff_utils.cc | 1158 << " hash=" << HexEncode(hash); in InitializePartitionInfo()
|