Home
last modified time | relevance | path

Searched refs:userId (Results 1 – 25 of 886) sorted by relevance

12345678910>>...36

/base/account/os_account/services/accountmgr/src/account_iam/
Daccount_iam_service.cpp32 int32_t AccountIAMService::OpenSession(int32_t userId, std::vector<uint8_t> &challenge) in OpenSession() argument
34 if (userId == 0) { in OpenSession()
35 if (!GetCurrentUserId(userId)) { in OpenSession()
40 IInnerOsAccountManager::GetInstance().IsOsAccountExists(userId, isOsAccountExits); in OpenSession()
46 InnerAccountIAMManager::GetInstance().OpenSession(userId, challenge); in OpenSession()
50 int32_t AccountIAMService::CloseSession(int32_t userId) in CloseSession() argument
52 if (userId == 0) { in CloseSession()
53 if (!GetCurrentUserId(userId)) { in CloseSession()
58 IInnerOsAccountManager::GetInstance().IsOsAccountExists(userId, isOsAccountExits); in CloseSession()
64 InnerAccountIAMManager::GetInstance().CloseSession(userId); in CloseSession()
[all …]
Dinner_account_iam_manager.cpp52 void InnerAccountIAMManager::OpenSession(int32_t userId, std::vector<uint8_t> &challenge) in OpenSession() argument
54 challenge = UserIDMClient::GetInstance().OpenSession(userId); in OpenSession()
56 userStateMap_[userId] = AFTER_OPEN_SESSION; in OpenSession()
57 userChallengeMap_[userId] = challenge; in OpenSession()
60 void InnerAccountIAMManager::CloseSession(int32_t userId) in CloseSession() argument
62 UserIDMClient::GetInstance().CloseSession(userId); in CloseSession()
64 if (userId == 0) { in CloseSession()
67 userStateMap_.erase(userId); in CloseSession()
69 userChallengeMap_.erase(userId); in CloseSession()
73 int32_t userId, const CredentialParameters &credInfo, const sptr<IIDMCallback> &callback) in AddCredential() argument
[all …]
/base/security/huks/frameworks/huks_standard/main/os_dependency/ipc/src/
Dhks_client_service_passthrough.c26 static int32_t GetProcessInfo(const struct HksParamSet *paramSet, char **processName, char **userId) in GetProcessInfo() argument
40 … HKS_IF_NOT_SUCC_LOGE_RETURN(HksGetUserId(userId), HKS_ERROR_INTERNAL_ERROR, "get user id failed") in GetProcessInfo()
63 char *userId = NULL; in HksClientGenerateKey() local
64 …HKS_IF_NOT_SUCC_LOGE_RETURN(GetProcessInfo(paramSetIn, &processName, &userId), HKS_ERROR_INTERNAL_… in HksClientGenerateKey()
68 { strlen(userId), (uint8_t *)userId }, in HksClientGenerateKey()
81 char *userId = NULL; in HksClientImportKey() local
82 …HKS_IF_NOT_SUCC_LOGE_RETURN(GetProcessInfo(paramSet, &processName, &userId), HKS_ERROR_INTERNAL_ER… in HksClientImportKey()
86 { strlen(userId), (uint8_t *)userId }, in HksClientImportKey()
99 char *userId = NULL; in HksClientImportWrappedKey() local
100 …HKS_IF_NOT_SUCC_LOGE_RETURN(GetProcessInfo(paramSet, &processName, &userId), HKS_ERROR_INTERNAL_ER… in HksClientImportWrappedKey()
[all …]
/base/notification/distributed_notification_service/services/ans/test/unittest/
Dos_account_manager_helper_test.cpp41 int32_t userId = -1; variable
42 EXPECT_EQ(ERR_OK, OsAccountManagerHelper::GetInstance().GetCurrentCallingUserId(userId));
52 int32_t userId = -1; variable
54 … EXPECT_EQ(ERR_OK, OsAccountManagerHelper::GetInstance().GetOsAccountLocalIdFromUid(uid, userId));
64 int32_t userId = -1; variable
65 EXPECT_EQ(ERR_OK, OsAccountManagerHelper::GetInstance().GetCurrentActiveUserId(userId));
75 int32_t userId = 100; variable
76 EXPECT_EQ(true, OsAccountManagerHelper::GetInstance().CheckUserExists(userId));
86 int32_t userId = 1099; variable
87 EXPECT_EQ(false, OsAccountManagerHelper::GetInstance().CheckUserExists(userId));
[all …]
/base/customization/enterprise_device_management/services/edm/src/
Dpolicy_manager.cpp28 int32_t userId) in GetAdminByPolicyName() argument
30 auto userPolicyMgr = GetUserPolicyMgr(userId); in GetAdminByPolicyName()
35 int32_t userId) in GetPolicy() argument
37 auto userPolicyMgr = GetUserPolicyMgr(userId); in GetPolicy()
43 for (auto userId : userIds) { in Init() local
44 EDMLOGI("PolicyManager::Init userId %{public}d", userId); in Init()
45 if (userId == EdmConstants::DEFAULT_USER_ID) { in Init()
46 defaultPolicyMgr_ = std::make_shared<UserPolicyManager>(userId); in Init()
49 … std::shared_ptr<UserPolicyManager> userPolicyMgr = std::make_shared<UserPolicyManager>(userId); in Init()
51 policyMgrMap_.insert(std::make_pair(userId, userPolicyMgr)); in Init()
[all …]
/base/inputmethod/imf/services/adapter/wms_connection_monitor/src/
Dwms_connection_observer.cpp23 void WmsConnectionObserver::OnConnected(int32_t userId, int32_t screenId) in OnConnected() argument
25 IMSA_HILOGI("WMS connect, userId: %{public}d, screenId: %{public}d", userId, screenId); in OnConnected()
26 Add(userId); in OnConnected()
28 changeHandler_(userId, screenId); in OnConnected()
32 void WmsConnectionObserver::OnDisconnected(int32_t userId, int32_t screenId) in OnDisconnected() argument
34 IMSA_HILOGI("WMS disconnect, userId: %{public}d, screenId: %{public}d", userId, screenId); in OnDisconnected()
35 Remove(userId); in OnDisconnected()
38 void WmsConnectionObserver::Add(int32_t userId) in Add() argument
41 connectedUserId_.insert(userId); in Add()
44 void WmsConnectionObserver::Remove(int32_t userId) in Remove() argument
[all …]
/base/security/huks/services/huks_standard/huks_service/main/os_dependency/sa/
Dhks_event_observer.cpp42 static void GetProcessInfo(int userId, int uid, struct HksProcessInfo *processInfo) in GetProcessInfo() argument
44 uint32_t userSize = sizeof(userId); in GetProcessInfo()
45 if (userId == 0) { in GetProcessInfo()
53 if (userId == 0) { in GetProcessInfo()
56 (void)memcpy_s(userData, userSize, &userId, userSize); in GetProcessInfo()
58 processInfo->userId.size = userSize; in GetProcessInfo()
59 processInfo->userId.data = userData; in GetProcessInfo()
60 processInfo->userIdInt = userId; in GetProcessInfo()
67 processInfo->userId.data = nullptr; in GetProcessInfo()
75 static void GetUserId(int userId, struct HksBlob *userIdBlob) in GetUserId() argument
[all …]
/base/useriam/user_auth_framework/test/unittest/services/src/
Duser_idm_session_controller_test.cpp48 int32_t userId = 100; variable
52 EXPECT_CALL(*mock, OpenSession(userId, _)).WillRepeatedly(Return(SUCCESS));
54 EXPECT_EQ(true, UserIdmSessionController::Instance().OpenSession(userId, challenge));
74 int32_t userId = 100; variable
78 EXPECT_CALL(*mock, OpenSession(userId, _)).WillRepeatedly(Return(GENERAL_ERROR));
80 EXPECT_EQ(false, UserIdmSessionController::Instance().OpenSession(userId, challenge));
85 int32_t userId = 100; variable
93 …EXPECT_CALL(*mock, OpenSession(userId, _)).WillRepeatedly(DoAll(WithArg<1>(fillUpChallenge), Retur…
95 EXPECT_EQ(false, UserIdmSessionController::Instance().IsSessionOpened(userId));
97 EXPECT_EQ(true, UserIdmSessionController::Instance().OpenSession(userId, challenge));
[all …]
Dcredential_info_test.cpp41 int32_t userId = 100; variable
51 CredentialInfoImpl CredentialInfoImpl(userId, info);
58 int32_t userId = 100; variable
67 CredentialInfoImpl CredentialInfoImpl(userId, info);
69 EXPECT_EQ(ret, userId);
74 int32_t userId = 100; variable
83 CredentialInfoImpl CredentialInfoImpl(userId, info);
90 int32_t userId = 100; variable
99 CredentialInfoImpl CredentialInfoImpl(userId, info);
106 int32_t userId = 100; variable
[all …]
/base/account/os_account/services/accountmgr/include/account_iam/
Dinner_account_iam_manager.h44 void OpenSession(int32_t userId, std::vector<uint8_t> &challenge);
45 void CloseSession(int32_t userId);
47 int32_t userId, const CredentialParameters &credInfo, const sptr<IIDMCallback> &callback);
49 int32_t userId, const CredentialParameters &credInfo, const sptr<IIDMCallback> &callback);
50 void DelCred(int32_t userId, uint64_t credentialId, const std::vector<uint8_t> &authToken,
52 void DelUser(int32_t userId, const std::vector<uint8_t> &authToken,
55 int32_t userId, AuthType authType, const sptr<IGetCredInfoCallback> &callback);
56 int32_t Cancel(int32_t userId);
63 … int32_t userId, const GetPropertyRequest &request, const sptr<IGetSetPropCallback> &callback);
65 … int32_t userId, const SetPropertyRequest &request, const sptr<IGetSetPropCallback> &callback);
[all …]
Daccount_iam_service.h30 int32_t OpenSession(int32_t userId, std::vector<uint8_t> &challenge) override;
31 int32_t CloseSession(int32_t userId) override;
33 …int32_t userId, const CredentialParameters &credInfo, const sptr<IIDMCallback> &callback) override;
35 …int32_t userId, const CredentialParameters &credInfo, const sptr<IIDMCallback> &callback) override;
36 int32_t Cancel(int32_t userId) override;
37 void DelCred(int32_t userId, uint64_t credentialId, const std::vector<uint8_t> &authToken,
39 …void DelUser(int32_t userId, const std::vector<uint8_t> &authToken, const sptr<IIDMCallback> &call…
41 int32_t userId, AuthType authType, const sptr<IGetCredInfoCallback> &callback) override;
48 …int32_t userId, const GetPropertyRequest &request, const sptr<IGetSetPropCallback> &callback) over…
50 …int32_t userId, const SetPropertyRequest &request, const sptr<IGetSetPropCallback> &callback) over…
[all …]
/base/useriam/user_auth_framework/services/ipc/src/
Dpublish_event_adapter_mock.cpp22 void PublishEventAdapter::PublishDeletedEvent(int32_t userId) in PublishDeletedEvent() argument
24 (void)userId; in PublishDeletedEvent()
27 void PublishEventAdapter::PublishCreatedEvent(int32_t userId, uint64_t scheduleId) in PublishCreatedEvent() argument
29 (void)userId; in PublishCreatedEvent()
33 void PublishEventAdapter::PublishUpdatedEvent(int32_t userId, uint64_t scheduleId) in PublishUpdatedEvent() argument
35 (void)userId; in PublishUpdatedEvent()
39 void PublishEventAdapter::PublishCredentialUpdatedEvent(int32_t userId, int32_t authType, uint32_t … in PublishCredentialUpdatedEvent() argument
41 (void)userId; in PublishCredentialUpdatedEvent()
/base/theme/wallpaper_mgr/services/src/
Dwallpaper_service.cpp242 int32_t userId = DEFAULT_USER_ID; in InitData() local
249 currentUserId_ = userId; in InitData()
253 InitUserDir(userId); in InitData()
254 LoadSettingsLocked(userId); in InitData()
255 InitResources(userId, WALLPAPER_SYSTEM); in InitData()
256 InitResources(userId, WALLPAPER_LOCKSCREEN); in InitData()
332 for (auto userId : userIds) { in InitUsersOnBoot() local
333 InitUserDir(userId); in InitUsersOnBoot()
334 LoadSettingsLocked(userId); in InitUsersOnBoot()
335 InitResources(userId, WALLPAPER_SYSTEM); in InitUsersOnBoot()
[all …]
/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/signature/src/
Dsm2_openssl.c37 HcfBlob userId; member
49 HcfBlob userId; member
95 HcfFree(impl->userId.data); in DestroySm2Sign()
96 impl->userId.data = NULL; in DestroySm2Sign()
116 HcfFree(impl->userId.data); in DestroySm2Verify()
117 impl->userId.data = NULL; in DestroySm2Verify()
120 static HcfResult SetUserIdFromBlob(HcfBlob userId, EVP_MD_CTX *mdCtx) in SetUserIdFromBlob() argument
129 if (userId.data == NULL || userId.len == 0) { in SetUserIdFromBlob()
139 uint8_t *opensslUserId = (uint8_t *)HcfMalloc(userId.len, 0); in SetUserIdFromBlob()
144 if (memcpy_s(opensslUserId, userId.len, userId.data, userId.len) != EOK) { in SetUserIdFromBlob()
[all …]
/base/inputmethod/imf/services/include/
Dime_info_inquirer.h82 std::string GetDumpInfo(int32_t userId);
83 std::shared_ptr<ImeNativeCfg> GetImeToStart(int32_t userId);
84 std::shared_ptr<Property> GetImeByBundleName(int32_t userId, const std::string &bundleName);
85 std::shared_ptr<Property> GetCurrentInputMethod(int32_t userId);
86 std::shared_ptr<SubProperty> GetCurrentSubtype(int32_t userId);
87 …std::shared_ptr<ImeInfo> GetImeInfo(int32_t userId, const std::string &bundleName, const std::stri…
88 std::shared_ptr<ImeInfo> GetDefaultImeInfo(int32_t userId);
92 void RefreshCurrentImeInfo(int32_t userId);
95 int32_t GetDefaultInputMethod(const int32_t userId, std::shared_ptr<Property> &prop);
96 int32_t GetInputMethodConfig(const int32_t userId, AppExecFwk::ElementName &inputMethodConfig);
[all …]
/base/inputmethod/imf/services/src/
Dime_info_inquirer.cpp69 bool ImeInfoInquirer::QueryImeExtInfos(const int32_t userId, std::vector<ExtensionAbilityInfo> &inf… in QueryImeExtInfos() argument
71 IMSA_HILOGD("userId: %{public}d", userId); in QueryImeExtInfos()
77 if (!bundleMgr->QueryExtensionAbilityInfos(ExtensionAbilityType::INPUTMETHOD, userId, infos)) { in QueryImeExtInfos()
85 …const int32_t userId, const std::string &bundleName, std::vector<AppExecFwk::ExtensionAbilityInfo>… in GetExtInfosByBundleName() argument
87 IMSA_HILOGD("userId: %{public}d, bundleName: %{public}s", userId, bundleName.c_str()); in GetExtInfosByBundleName()
89 if (!QueryImeExtInfos(userId, tempExtInfos)) { in GetExtInfosByBundleName()
106 int32_t userId, const std::string &bundleName, const std::string &subName) in GetImeInfo() argument
108 auto info = GetImeInfoFromCache(userId, bundleName, subName); in GetImeInfo()
109 return info == nullptr ? GetImeInfoFromBundleMgr(userId, bundleName, subName) : info; in GetImeInfo()
113 const int32_t userId, const std::string &bundleName, const std::string &subName) in GetImeInfoFromCache() argument
[all …]
/base/notification/common_event_service/services/src/
Dstatic_subscriber_manager.cpp142 const sptr<IRemoteObject> &service, const int32_t &userId, in PublishCommonEventConnecAbility() argument
149 …DelayedSingleton<AbilityManagerHelper>::GetInstance()->ConnectAbility(want, data, service, userId); in PublishCommonEventConnecAbility()
150 … SendStaticSubscriberStartHiSysEvent(userId, abilityName, bundleName, data.GetWant().GetAction()); in PublishCommonEventConnecAbility()
155 const int32_t &userId, const sptr<IRemoteObject> &service, const std::string &bundleName) in PublishCommonEventInner() argument
160 …_LOGI("subscriber.userId = %{public}d, userId = %{public}d, event = %{public}s", subscriber.userId, in PublishCommonEventInner()
161 userId, data.GetWant().GetAction().c_str()); in PublishCommonEventInner()
163 … EVENT_LOGD("Current subscriber is disable, subscriber.userId = %{public}d.", subscriber.userId); in PublishCommonEventInner()
165 userId, bundleName, subscriber.bundleName, data.GetWant().GetAction()); in PublishCommonEventInner()
168 if (subscriber.userId < SUBSCRIBE_USER_SYSTEM_BEGIN) { in PublishCommonEventInner()
169 … EVENT_LOGW("subscriber userId is invalid, subscriber.userId = %{public}d", subscriber.userId); in PublishCommonEventInner()
[all …]
/base/account/os_account/frameworks/account_iam/src/
Daccount_iam_client.cpp45 int32_t AccountIAMClient::OpenSession(int32_t userId, std::vector<uint8_t> &challenge) in OpenSession() argument
51 return proxy->OpenSession(userId, challenge); in OpenSession()
54 int32_t AccountIAMClient::CloseSession(int32_t userId) in CloseSession() argument
60 return proxy->CloseSession(userId); in CloseSession()
64 …int32_t userId, const CredentialParameters& credInfo, const std::shared_ptr<IDMCallback> &callback) in AddCredential() argument
76 if ((userId == 0) && (!GetCurrentUserId(userId))) { in AddCredential()
82 … SetAuthSubType(userId, static_cast<int32_t>(credInfo.pinType.value_or(PinSubType::PIN_MAX))); in AddCredential()
84 sptr<IIDMCallback> wrapper = new (std::nothrow) IDMCallbackService(userId, callback); in AddCredential()
85 proxy->AddCredential(userId, credInfo, wrapper); in AddCredential()
89 …int32_t userId, const CredentialParameters& credInfo, const std::shared_ptr<IDMCallback> &callback) in UpdateCredential() argument
[all …]
/base/useriam/user_auth_framework/test/unittest/services/mocks/
Dmock_user_idm_service.h28 MOCK_METHOD2(OpenSession, int32_t(int32_t userId, std::vector<uint8_t> &challenge));
29 MOCK_METHOD1(CloseSession, void(int32_t userId));
30 MOCK_METHOD3(GetCredentialInfo, int32_t(int32_t userId, AuthType authType,
32 …MOCK_METHOD2(GetSecInfo, int32_t(int32_t userId, const sptr<IdmGetSecureUserInfoCallbackInterface>…
33 MOCK_METHOD4(AddCredential, void(int32_t userId, const CredentialPara &credPara,
35 MOCK_METHOD3(UpdateCredential, void(int32_t userId, const CredentialPara &credPara,
37 MOCK_METHOD1(Cancel, int32_t(int32_t userId));
38 … MOCK_METHOD2(EnforceDelUser, int32_t(int32_t userId, const sptr<IdmCallbackInterface> &callback));
39 MOCK_METHOD3(DelUser, void(int32_t userId, const std::vector<uint8_t> authToken,
41 MOCK_METHOD4(DelCredential, void(int32_t userId, uint64_t credentialId,
/base/useriam/user_auth_framework/frameworks/native/ipc/src/
Duser_idm_stub.cpp75 int32_t userId; in OpenSessionStub() local
76 if (!data.ReadInt32(userId)) { in OpenSessionStub()
82 int32_t ret = OpenSession(userId, challenge); in OpenSessionStub()
100 int32_t userId; in CloseSessionStub() local
102 if (!data.ReadInt32(userId)) { in CloseSessionStub()
107 CloseSession(userId); in CloseSessionStub()
116 int32_t userId; in GetCredentialInfoStub() local
117 if (!data.ReadInt32(userId)) { in GetCredentialInfoStub()
134 int32_t ret = GetCredentialInfo(userId, static_cast<AuthType>(authType), callback); in GetCredentialInfoStub()
144 int32_t userId; in GetSecInfoStub() local
[all …]
/base/useriam/user_auth_framework/frameworks/native/client/src/
Duser_idm_client_impl.cpp30 std::vector<uint8_t> UserIdmClientImpl::OpenSession(int32_t userId) in OpenSession() argument
32 IAM_LOGI("start, userId:%{public}d", userId); in OpenSession()
40 auto success = proxy->OpenSession(userId, challenge); in OpenSession()
48 void UserIdmClientImpl::CloseSession(int32_t userId) in CloseSession() argument
50 IAM_LOGI("start, userId:%{public}d", userId); in CloseSession()
57 proxy->CloseSession(userId); in CloseSession()
60 void UserIdmClientImpl::AddCredential(int32_t userId, const CredentialParameters &para, in AddCredential() argument
63 IAM_LOGI("start, userId:%{public}d authType:%{public}d", userId, para.authType); in AddCredential()
87 proxy->AddCredential(userId, credPara, wrapper, false); in AddCredential()
90 void UserIdmClientImpl::UpdateCredential(int32_t userId, const CredentialParameters &para, in UpdateCredential() argument
[all …]
/base/account/os_account/interfaces/innerkits/account_iam/native/include/
Daccount_iam_client.h66 int32_t OpenSession(int32_t userId, std::vector<uint8_t> &challenge);
74 int32_t CloseSession(int32_t userId);
84 …int32_t userId, const CredentialParameters& credInfo, const std::shared_ptr<IDMCallback> &callback…
94 …int32_t userId, const CredentialParameters& credInfo, const std::shared_ptr<IDMCallback> &callback…
102 int32_t Cancel(int32_t userId);
112 void DelCred(int32_t userId, uint64_t credentialId, const std::vector<uint8_t> &authToken,
122 …void DelUser(int32_t userId, const std::vector<uint8_t> &authToken, const std::shared_ptr<IDMCallb…
133 …int32_t GetCredentialInfo(int32_t userId, AuthType authType, const std::shared_ptr<GetCredInfoCall…
198 …int32_t userId, const GetPropertyRequest &request, const std::shared_ptr<GetSetPropCallback> &call…
209 …int32_t userId, const SetPropertyRequest &request, const std::shared_ptr<GetSetPropCallback> &call…
[all …]
Daccount_iam_mgr_proxy.h31 int32_t OpenSession(int32_t userId, std::vector<uint8_t> &challenge) override;
32 int32_t CloseSession(int32_t userId) override;
34 …int32_t userId, const CredentialParameters &credInfo, const sptr<IIDMCallback> &callback) override;
35 void UpdateCredential(int32_t userId, const CredentialParameters &credInfo,
37 int32_t Cancel(int32_t userId) override;
38 void DelCred(int32_t userId, uint64_t credentialId, const std::vector<uint8_t> &authToken,
40 …void DelUser(int32_t userId, const std::vector<uint8_t> &authToken, const sptr<IIDMCallback> &call…
42 int32_t userId, AuthType authType, const sptr<IGetCredInfoCallback> &callback) override;
49 …int32_t userId, const GetPropertyRequest &request, const sptr<IGetSetPropCallback> &callback) over…
51 …int32_t userId, const SetPropertyRequest &request, const sptr<IGetSetPropCallback> &callback) over…
[all …]
/base/useriam/user_auth_framework/interfaces/inner_api/
Duser_idm_client.h60 virtual std::vector<uint8_t> OpenSession(int32_t userId) = 0;
67 virtual void CloseSession(int32_t userId) = 0;
76 virtual void AddCredential(int32_t userId, const CredentialParameters &para,
86 virtual void UpdateCredential(int32_t userId, const CredentialParameters &para,
95 virtual int32_t Cancel(int32_t userId) = 0;
107 …virtual void DeleteCredential(int32_t userId, uint64_t credentialId, const std::vector<uint8_t> &a…
119 virtual void DeleteUser(int32_t userId, const std::vector<uint8_t> &authToken,
132 …virtual int32_t EraseUser(int32_t userId, const std::shared_ptr<UserIdmClientCallback> &callback) …
142 virtual int32_t GetCredentialInfo(int32_t userId, AuthType authType,
152 …virtual int32_t GetSecUserInfo(int32_t userId, const std::shared_ptr<GetSecUserInfoCallback> &call…
/base/useriam/user_auth_framework/frameworks/native/ipc/common_defines/
Duser_idm_interface.h42 virtual int32_t OpenSession(int32_t userId, std::vector<uint8_t> &challenge) = 0;
49 virtual void CloseSession(int32_t userId) = 0;
58 virtual int32_t GetCredentialInfo(int32_t userId, AuthType authType,
67 …virtual int32_t GetSecInfo(int32_t userId, const sptr<IdmGetSecureUserInfoCallbackInterface> &call…
79 virtual void AddCredential(int32_t userId, const CredentialPara &credPara,
89 virtual void UpdateCredential(int32_t userId, const CredentialPara &credPara,
97 virtual int32_t Cancel(int32_t userId) = 0;
106 virtual int32_t EnforceDelUser(int32_t userId, const sptr<IdmCallbackInterface> &callback) = 0;
116 virtual void DelUser(int32_t userId, const std::vector<uint8_t> authToken,
129 virtual void DelCredential(int32_t userId, uint64_t credentialId,

12345678910>>...36