blob: 074814088ca4a4672af6def58892c480ba600f17 [file] [log] [blame]
dianlujitao47d41f62019-10-06 12:04:33 +08001/*
2 * Copyright (C) 2019 The LineageOS Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
19namespace vendor {
20namespace qti {
21namespace hardware {
22namespace cryptfshw {
23namespace V1_0 {
24namespace implementation {
25
26// interface wrapper
27class ICryptfsHwController {
28 public:
29 virtual ~ICryptfsHwController() = default;
30
31 virtual int createKey(int usage, const char* passwd) = 0;
32 virtual int updateKey(int usage, const char* oldpw, const char* newpw) = 0;
33 virtual int wipeKey(int usage) = 0;
34};
35
36} // namespace implementation
37} // namespace V1_0
38} // namespace cryptfshw
39} // namespace hardware
40} // namespace qti
41} // namespace vendor