blob: 146f4d3ee78a163b839674d663d7b5cb58f0e81c [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
33bool installKey(const KeyBuffer& key, const std::string& mountpoint, std::string* raw_ref);
34bool evictKey(const std::string& mountpoint, const std::string& raw_ref);
Paul Crowley26a53882017-10-26 11:16:39 -070035bool retrieveAndInstallKey(bool create_if_absent, const KeyAuthentication& key_authentication,
36 const std::string& key_path, const std::string& tmp_path,
Eric Biggersf3dc4202019-09-30 13:05:58 -070037 const std::string& volume_uuid, std::string* key_ref);
Paul Crowley14c8c072018-09-18 13:30:21 -070038bool retrieveKey(bool create_if_absent, const std::string& key_path, const std::string& tmp_path,
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080039 KeyBuffer* key, bool keepOld = true);
Paul Crowleyf71ace32016-06-02 11:01:19 -070040
41} // namespace vold
42} // namespace android
43
44#endif