blob: 06131addcf5281dc9a3c8998eb14e24e17ca967f [file] [log] [blame]
Paul Crowleyd5759812016-06-02 11:04:27 -07001/*
2 * Copyright (C) 2016 The Android Open Source 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#ifndef _METADATA_CRYPT_H
18#define _METADATA_CRYPT_H
19
Paul Crowley0fd26262018-01-30 09:48:19 -080020#include <string>
21
Paul Crowley886e5722020-02-07 12:51:56 -080022#include "KeyBuffer.h"
23#include "KeyUtil.h"
24
Paul Crowley220567c2020-02-07 12:45:20 -080025namespace android {
26namespace vold {
27
David Anderson156d9d22021-09-21 17:21:57 -070028void defaultkey_precreate_dm_device();
Paul Lawrence236e5e82019-06-25 14:44:33 -070029bool fscrypt_mount_metadata_encrypted(const std::string& block_device,
Jaegeuk Kim0c52c712020-12-15 09:00:49 -080030 const std::string& mount_point, bool needs_encrypt,
31 bool should_format, const std::string& fs_type);
Paul Crowleyd5759812016-06-02 11:04:27 -070032
Paul Crowley886e5722020-02-07 12:51:56 -080033bool defaultkey_volume_keygen(KeyGeneration* gen);
34
35bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
36 const android::vold::KeyBuffer& key,
37 std::string* out_crypto_blkdev);
38
Yo Chiang0af25a32020-10-07 14:20:00 +080039bool destroy_dsu_metadata_key(const std::string& dsu_slot);
40
Paul Crowley220567c2020-02-07 12:45:20 -080041} // namespace vold
42} // namespace android
Paul Crowleyd5759812016-06-02 11:04:27 -070043#endif