Lines Matching refs:profile
276 SIGNATURE_TOOLS_LOGE("get profile content failed, file: %s", hapFilePath.c_str());
293 int VerifyHap::GetProfileContent(const std::string profile, std::string& ret)
295 json obj = json::parse(profile, nullptr, false);
297 ret = profile;
301 if (p7Data.Parse(profile) < 0) {
302 ret = profile;
307 "Verify profile pkcs7 failed! Profile is invalid");
308 ret = profile;
313 "Check profile failed, signed profile content is not byte array");
314 ret = profile;
383 int32_t VerifyHap::WriteVerifyOutput(Pkcs7Context& pkcs7Context, std::vector<int8_t>& profile, Options* options)
394 std::string p7bContent(profile.begin(), profile.end());