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_INTERFACE_H
17 #define EL5_FILEKEY_MANAGER_INTERFACE_H
18 
19 #include <vector>
20 
21 #include "data_lock_type.h"
22 #include "el5_filekey_callback_interface.h"
23 #include "el5_filekey_manager_error.h"
24 #include "el5_filekey_manager_interface_code.h"
25 #include "iremote_broker.h"
26 
27 namespace OHOS {
28 namespace Security {
29 namespace AccessToken {
30 class El5FilekeyManagerInterface : public IRemoteBroker {
31 public:
32     DECLARE_INTERFACE_DESCRIPTOR(u"ohos.security.accesstoken.El5FilekeyManagerInterface");
33 
34     virtual int32_t AcquireAccess(DataLockType type) = 0;
35     virtual int32_t ReleaseAccess(DataLockType type) = 0;
36     virtual int32_t GenerateAppKey(uint32_t uid, const std::string& bundleName, std::string& keyId) = 0;
37     virtual int32_t DeleteAppKey(const std::string& bundleName, int32_t userId) = 0;
38     virtual int32_t GetUserAppKey(int32_t userId, bool getAllFlag,
39         std::vector<std::pair<int32_t, std::string>> &keyInfos) = 0;
40     virtual int32_t ChangeUserAppkeysLoadInfo(int32_t userId, std::vector<std::pair<std::string, bool>> &loadInfos) = 0;
41     virtual int32_t SetFilePathPolicy() = 0;
42     virtual int32_t RegisterCallback(const sptr<El5FilekeyCallbackInterface> &callback) = 0;
43 };
44 }  // namespace AccessToken
45 }  // namespace Security
46 }  // namespace OHOS
47 #endif // EL5_FILEKEY_MANAGER_INTERFACE_H
48