Home
last modified time | relevance | path

Searched refs:signatures (Results 1 – 25 of 38) sorted by relevance

12

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/
H A Dbms_bundle_permission_start_full_test.cpp187 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 Dhap_verify_result.cpp24 : 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 Dhap_verify_result_test.cpp73 std::vector<string> signatures = hapVerifyResult.GetSignature(); variable
74 ASSERT_TRUE(signatures.empty());
H A Dhap_verify_test.cpp192 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 Dbms_service_startup_test.cpp561 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 Dhap_verify_result.h85 std::vector<std::string> signatures; variable
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_permission_mgr.cpp370 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 Dhsp-to-har.md2 The HSP has requirements on the consistency of bundle names and signatures and the HSP file needs t…
H A Dintroduction-to-arkts.md740 …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 Dtypescript-to-arkts-migration-guide.md470 **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 Dbundle_permission_mgr.h135 …ol MatchSignature(const DefaultPermission &permission, const std::vector<std::string> &signatures);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dbundle_permission_mgr.cpp269 const std::vector<std::string> &signatures) in MatchSignature() argument
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.1/
H A Dchangelogs-security.md234 * 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 Dchangelogs-security.md234 * Create a sign object for generating signatures.
247 * Create a verify object for verifying signatures.
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/
H A DREADME.md22 - The **bundle security management sub-module** verifies signatures, and grants and manages per…
/ohos5.0/docs/en/design/ux-design/
H A Danimation-design-principles.md40 …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 Dsubsys-build-bindgen-cxx-guide.md331 // Rust types and signatures exposed to C++.
338 // C++ types and signatures exposed to Rust.
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-build-bindgen-cxx-guide.md331 // Rust types and signatures exposed to C++.
338 // C++ types and signatures exposed to Rust.
H A Dsubsys-security-overview.md63 - Only the signatures of the AppGallery debug and release applications and OpenHarmony self-signed …
H A Dsubsys-security-sigverify.md6 …be installed in OpenHarmony, the applications must be signed and their signatures must be verified.
H A Dsubsys-security-rightmanagement.md6 …m settings, manual authorization, and others. In addition, application signatures are used to ensu…
/ohos5.0/base/security/appverify/
H A DREADME.md15 …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 Dtypescript-to-arkts-migration-guide.md394 **规则:**`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 Darkts-more-cases.md152 ## 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 Dchangelogs-arkcompiler.md110 8. Unused renames are not allowed in type signatures.

12