1 /* 2 * Copyright (c) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef EL5_FILEKEY_MANAGER_PROXY_H 17 #define EL5_FILEKEY_MANAGER_PROXY_H 18 19 #include "el5_filekey_manager_interface.h" 20 #include "el5_filekey_manager_interface_code.h" 21 #include "iremote_proxy.h" 22 23 namespace OHOS { 24 namespace Security { 25 namespace AccessToken { 26 class El5FilekeyManagerProxy : public IRemoteProxy<El5FilekeyManagerInterface> { 27 public: 28 explicit El5FilekeyManagerProxy(const sptr<IRemoteObject> &impl); 29 virtual ~El5FilekeyManagerProxy(); 30 31 int32_t AcquireAccess(DataLockType type) override; 32 int32_t ReleaseAccess(DataLockType type) override; 33 int32_t GenerateAppKey(uint32_t uid, const std::string& bundleName, std::string& keyId) override; 34 int32_t DeleteAppKey(const std::string& bundleName, int32_t userId) override; 35 int32_t GetUserAppKey(int32_t userId, bool getAllFlag, 36 std::vector<std::pair<int32_t, std::string>> &keyInfos) override; 37 int32_t ChangeUserAppkeysLoadInfo(int32_t userId, std::vector<std::pair<std::string, bool>> &loadInfos) override; 38 int32_t SetFilePathPolicy() override; 39 int32_t RegisterCallback(const sptr<El5FilekeyCallbackInterface> &callback) override; 40 private: 41 static inline BrokerDelegator<El5FilekeyManagerProxy> delegator_; 42 }; 43 } // namespace AccessToken 44 } // namespace Security 45 } // namespace OHOS 46 #endif // EL5_FILEKEY_MANAGER_PROXY_H 47