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_SERVICE_EXT_INTERFACE_H 17 #define EL5_FILEKEY_SERVICE_EXT_INTERFACE_H 18 19 #include <vector> 20 21 #include "data_lock_type.h" 22 23 namespace OHOS { 24 namespace Security { 25 namespace AccessToken { 26 class El5FilekeyServiceExtInterface { 27 public: 28 virtual int32_t AcquireAccess(DataLockType type, bool isApp) = 0; 29 virtual int32_t ReleaseAccess(DataLockType type, bool isApp) = 0; 30 virtual int32_t GenerateAppKey(uint32_t uid, const std::string& bundleName, std::string& keyId) = 0; 31 virtual int32_t DeleteAppKey(const std::string& bundleName, int32_t userId) = 0; 32 virtual int32_t GetUserAppKey(int32_t userId, bool getAllFlag, 33 std::vector<std::pair<int32_t, std::string>> &keyInfos) = 0; 34 virtual int32_t ChangeUserAppkeysLoadInfo(int32_t userId, std::vector<std::pair<std::string, bool>> &loadInfos) = 0; 35 virtual int32_t SetFilePathPolicy(int32_t userId) = 0; 36 virtual int32_t HandleUserCommonEvent(const std::string &eventName, int32_t userId) = 0; 37 virtual int32_t SetPolicyScreenLocked() = 0; 38 virtual int32_t DumpData(int fd, const std::vector<std::u16string>& args) = 0; 39 virtual int32_t RegisterCallback(const sptr<El5FilekeyCallbackInterface> &callback) = 0; 40 }; 41 } // namespace AccessToken 42 } // namespace Security 43 } // namespace OHOS 44 #endif // EL5_FILEKEY_SERVICE_EXT_INTERFACE_H 45