Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 1 | /* |
| 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 Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 20 | #include <string> |
| 21 | |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 22 | #include "KeyBuffer.h" |
| 23 | #include "KeyUtil.h" |
| 24 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 25 | namespace android { |
| 26 | namespace vold { |
| 27 | |
David Anderson | 156d9d2 | 2021-09-21 17:21:57 -0700 | [diff] [blame] | 28 | void defaultkey_precreate_dm_device(); |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 29 | bool fscrypt_mount_metadata_encrypted(const std::string& block_device, |
Jaegeuk Kim | 0c52c71 | 2020-12-15 09:00:49 -0800 | [diff] [blame] | 30 | const std::string& mount_point, bool needs_encrypt, |
| 31 | bool should_format, const std::string& fs_type); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 32 | |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 33 | bool defaultkey_volume_keygen(KeyGeneration* gen); |
| 34 | |
| 35 | bool 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 Chiang | 0af25a3 | 2020-10-07 14:20:00 +0800 | [diff] [blame] | 39 | bool destroy_dsu_metadata_key(const std::string& dsu_slot); |
| 40 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 41 | } // namespace vold |
| 42 | } // namespace android |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 43 | #endif |