blob: dc68e7ce47c20429340e46d9da181bc59abf9911 [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
Paul Lawrence236e5e82019-06-25 14:44:33 -070028bool fscrypt_mount_metadata_encrypted(const std::string& block_device,
29 const std::string& mount_point, bool needs_encrypt);
Paul Crowleyd5759812016-06-02 11:04:27 -070030
Paul Crowley886e5722020-02-07 12:51:56 -080031bool defaultkey_volume_keygen(KeyGeneration* gen);
32
33bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
34 const android::vold::KeyBuffer& key,
35 std::string* out_crypto_blkdev);
36
Paul Crowley220567c2020-02-07 12:45:20 -080037} // namespace vold
38} // namespace android
Paul Crowleyd5759812016-06-02 11:04:27 -070039#endif