Home
last modified time | relevance | path

Searched refs:GetBundledPublicKey (Results 1 – 8 of 8) sorted by relevance

/system/apex/apexd/
Dapexd_verity_test.cpp51 auto verity_data = apex->VerifyApexVerity(apex->GetBundledPublicKey()); in TEST()
83 auto verity_data = apex->VerifyApexVerity(apex->GetBundledPublicKey()); in TEST()
98 auto verity_data2 = apex2->VerifyApexVerity(apex2->GetBundledPublicKey()); in TEST()
Dapex_file_test.cpp103 apex_file->VerifyApexVerity(apex_file->GetBundledPublicKey()); in TEST_P()
131 TEST_P(ApexFileTest, GetBundledPublicKey) { in TEST_P() argument
142 EXPECT_EQ(key_content, apex_file->GetBundledPublicKey()); in TEST_P()
211 EXPECT_EQ(key_content, apex_file->GetBundledPublicKey()); in TEST()
219 auto result = apex->VerifyApexVerity(apex->GetBundledPublicKey()); in TEST()
329 decompressed_apex->GetBundledPublicKey()); in TEST()
Dapex_file_repository.cpp81 } else if (it->second.GetBundledPublicKey() != in ScanBuiltInDir()
82 apex_file->GetBundledPublicKey()) { in ScanBuiltInDir()
137 apex_file->GetBundledPublicKey() != *pre_installed_public_key) { in AddDataApex()
177 return it->second.GetBundledPublicKey(); in GetPublicKey()
Dapex_file.h53 const std::string& GetBundledPublicKey() const { return apex_pubkey_; } in GetBundledPublicKey() function
Dapexd_test_utils.h118 Property("public_key", &ApexFile::GetBundledPublicKey,
119 Eq(other.get().GetBundledPublicKey())),
Dapex_file_repository_test.cpp95 ASSERT_EQ(apex->GetBundledPublicKey(), *ret); in TEST()
206 ASSERT_NE(*public_key, apex->GetBundledPublicKey()); in TEST()
241 ASSERT_NE(*public_key, apex->GetBundledPublicKey()); in TEST()
Dapexd.cpp2731 if (capex.GetBundledPublicKey() != apex.GetBundledPublicKey()) { in ValidateDecompressedApex()
2743 auto apex_verity = apex.VerifyApexVerity(apex.GetBundledPublicKey()); in ValidateDecompressedApex()
Dapexd_test.cpp136 auto digest = apex.VerifyApexVerity(apex.GetBundledPublicKey()); in GetRootDigest()