Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [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 ANDROID_VOLD_KEYSTORAGE_H |
| 18 | #define ANDROID_VOLD_KEYSTORAGE_H |
| 19 | |
| 20 | #include <string> |
| 21 | |
| 22 | namespace android { |
| 23 | namespace vold { |
| 24 | |
| 25 | // Create a directory at the named path, and store "key" in it, |
| 26 | // in such a way that it can only be retrieved via Keymaster and |
| 27 | // can be securely deleted. |
| 28 | // It's safe to move/rename the directory after creation. |
| 29 | bool StoreKey(const std::string &target_dir, const std::string &key); |
| 30 | |
| 31 | // Retrieve the key from the named directory. |
| 32 | bool RetrieveKey(const std::string &dir, std::string &key); |
| 33 | |
| 34 | // Securely destroy the key stored in the named directory and delete the directory. |
| 35 | bool DestroyKey(const std::string &dir); |
| 36 | |
| 37 | } // namespace vold |
| 38 | } // namespace android |
| 39 | |
| 40 | #endif |