/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/ |
H A D | bms_bundle_permission_start_full_test.cpp | 187 std::vector<std::string> signatures; variable 188 res = BundlePermissionMgr::MatchSignature(permission, signatures); 205 std::vector<std::string> signatures; variable 206 signatures.push_back("appSignature1"); 207 res = BundlePermissionMgr::MatchSignature(permission, signatures); 224 std::vector<std::string> signatures; variable 225 signatures.push_back("appSignature"); 226 res = BundlePermissionMgr::MatchSignature(permission, signatures);
|
/ohos5.0/base/security/appverify/interfaces/innerkits/appverify/src/interfaces/ |
H A D | hap_verify_result.cpp | 24 : version(0), publicKeys(), signatures(), pkcs7SignBlock(), in HapVerifyResult() 65 return signatures; in GetSignature() 75 signatures = inputSignatures; in SetSignature()
|
/ohos5.0/base/security/appverify/interfaces/innerkits/appverify/test/unittest/src/ |
H A D | hap_verify_result_test.cpp | 73 std::vector<string> signatures = hapVerifyResult.GetSignature(); variable 74 ASSERT_TRUE(signatures.empty());
|
H A D | hap_verify_test.cpp | 192 std::vector<std::string> signatures = hapVerifyResult.GetSignature(); variable 193 ASSERT_TRUE(static_cast<int>(signatures.size()) == TEST_CERT_CHAIN_LEN);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_service_startup_test/ |
H A D | bms_service_startup_test.cpp | 561 std::vector<std::string> signatures; variable 562 signatures.insert(signatures.end(), signature); 563 ret = BundlePermissionMgr::MatchSignature(defaultPermission, signatures); 619 std::vector<std::string> signatures = { STRING_TYPE }; variable 620 ret = BundlePermissionMgr::MatchSignature(defaultPermission, signatures); 624 ret = BundlePermissionMgr::MatchSignature(defaultPermission, signatures);
|
/ohos5.0/base/security/appverify/interfaces/innerkits/appverify/include/interfaces/ |
H A D | hap_verify_result.h | 85 std::vector<std::string> signatures; variable
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_permission_mgr.cpp | 370 const DefaultPermission &permission, const std::vector<std::string> &signatures) in MatchSignature() argument 377 if (std::find(signatures.begin(), signatures.end(), signature) != signatures.end()) { in MatchSignature()
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | hsp-to-har.md | 2 The HSP has requirements on the consistency of bundle names and signatures and the HSP file needs t…
|
H A D | introduction-to-arkts.md | 740 …nt ways by writing overload signatures. To do so, several functions' headers that have the same na… 752 An error occurs if two overload signatures have identical parameter lists. 1108 …rent ways by writing overload signatures. To do so, several method headers that have the same name… 1122 An error occurs if two overload signatures have the same name and identical parameter lists. 1167 …t ways by writing overload signatures. To do so, several constructor headers that have the same na… 1180 An error occurs if two overload signatures have the same name and identical parameter lists.
|
H A D | typescript-to-arkts-migration-guide.md | 470 **Rule:** `arkts-no-call-signatures` 474 ArkTS does not support call signatures in object types. Use `class` instead. 511 **Rule:** `arkts-no-ctor-signatures-type` 515 ArkTS does not support constructor signatures in object types. Use `class` instead. 588 **Rule:** `arkts-no-indexed-signatures` 592 ArkTS does not allow indexed signatures. Use arrays instead. 780 **Rule:** `arkts-no-ctor-signatures-iface` 784 ArkTS does not support constructor signatures. Use methods instead. 2309 signatures that are not distinguishable, for example, two methods that have the same 2469 **Rule:** `arkts-no-ctor-signatures-funcs`
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_permission_mgr.h | 135 …ol MatchSignature(const DefaultPermission &permission, const std::vector<std::string> &signatures);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | bundle_permission_mgr.cpp | 269 const std::vector<std::string> &signatures) in MatchSignature() argument
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.1/ |
H A D | changelogs-security.md | 234 * Create a sign object for generating signatures. 247 * Create a verify object for verifying signatures.
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.9.1/ |
H A D | changelogs-security.md | 234 * Create a sign object for generating signatures. 247 * Create a verify object for verifying signatures.
|
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/ |
H A D | README.md | 22 - The **bundle security management sub-module** verifies signatures, and grants and manages per…
|
/ohos5.0/docs/en/design/ux-design/ |
H A D | animation-design-principles.md | 40 …agnetic attraction, if used throughout the entire system, give your UI signatures that are unique …
|
/ohos5.0/docs/zh-cn/device-dev/subsystems/ |
H A D | subsys-build-bindgen-cxx-guide.md | 331 // Rust types and signatures exposed to C++. 338 // C++ types and signatures exposed to Rust.
|
/ohos5.0/docs/en/device-dev/subsystems/ |
H A D | subsys-build-bindgen-cxx-guide.md | 331 // Rust types and signatures exposed to C++. 338 // C++ types and signatures exposed to Rust.
|
H A D | subsys-security-overview.md | 63 - Only the signatures of the AppGallery debug and release applications and OpenHarmony self-signed …
|
H A D | subsys-security-sigverify.md | 6 …be installed in OpenHarmony, the applications must be signed and their signatures must be verified.
|
H A D | subsys-security-rightmanagement.md | 6 …m settings, manual authorization, and others. In addition, application signatures are used to ensu…
|
/ohos5.0/base/security/appverify/ |
H A D | README.md | 15 …be installed in OpenHarmony, the applications must be signed and their signatures must be verified.
|
/ohos5.0/docs/zh-cn/application-dev/quick-start/ |
H A D | typescript-to-arkts-migration-guide.md | 394 **规则:**`arkts-no-call-signatures` 435 **规则:**`arkts-no-ctor-signatures-type` 512 **规则:**`arkts-no-indexed-signatures` 704 **规则:**`arkts-no-ctor-signatures-iface` 2338 **规则:**`arkts-no-ctor-signatures-funcs`
|
H A D | arkts-more-cases.md | 152 ## arkts-no-ctor-signatures-type 213 ## arkts-no-indexed-signatures 288 ## arkts-no-ctor-signatures-iface 1206 ## arkts-no-ctor-signatures-funcs
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.1.3.1/ |
H A D | changelogs-arkcompiler.md | 110 8. Unused renames are not allowed in type signatures.
|