blob: f6799d9a0847388047e30c4c6d6466f6e0eb71c8 [file] [log] [blame]
Paul Crowleyf71ace32016-06-02 11:01:19 -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 ANDROID_VOLD_KEYUTIL_H
18#define ANDROID_VOLD_KEYUTIL_H
19
Pavel Grafove2e2d302017-08-01 17:15:53 +010020#include "KeyBuffer.h"
Paul Crowley26a53882017-10-26 11:16:39 -070021#include "KeyStorage.h"
Pavel Grafove2e2d302017-08-01 17:15:53 +010022
Pavel Grafove2e2d302017-08-01 17:15:53 +010023#include <memory>
Paul Crowley14c8c072018-09-18 13:30:21 -070024#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070025
26namespace android {
27namespace vold {
28
Pavel Grafove2e2d302017-08-01 17:15:53 +010029bool randomKey(KeyBuffer* key);
Eric Biggersf3dc4202019-09-30 13:05:58 -070030
31bool isFsKeyringSupported(void);
32
Eric Biggers83a73d72019-09-30 13:06:47 -070033bool installKey(const KeyBuffer& key, const std::string& mountpoint, int policy_version,
34 std::string* raw_ref);
35bool evictKey(const std::string& mountpoint, const std::string& raw_ref, int policy_version);
Paul Crowley26a53882017-10-26 11:16:39 -070036bool retrieveAndInstallKey(bool create_if_absent, const KeyAuthentication& key_authentication,
37 const std::string& key_path, const std::string& tmp_path,
Eric Biggers83a73d72019-09-30 13:06:47 -070038 const std::string& volume_uuid, int policy_version,
39 std::string* key_ref);
Paul Crowley14c8c072018-09-18 13:30:21 -070040bool retrieveKey(bool create_if_absent, const std::string& key_path, const std::string& tmp_path,
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080041 KeyBuffer* key, bool keepOld = true);
Paul Crowleyf71ace32016-06-02 11:01:19 -070042
43} // namespace vold
44} // namespace android
45
46#endif