blob: 7ee67254b9eefd6d4df1cbb5c8de2d8180eda3f5 [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);
30bool installKey(const KeyBuffer& key, std::string* raw_ref);
Paul Crowleyf71ace32016-06-02 11:01:19 -070031bool evictKey(const std::string& raw_ref);
Paul Crowley26a53882017-10-26 11:16:39 -070032bool retrieveAndInstallKey(bool create_if_absent, const KeyAuthentication& key_authentication,
33 const std::string& key_path, const std::string& tmp_path,
34 std::string* key_ref);
Paul Crowley14c8c072018-09-18 13:30:21 -070035bool retrieveKey(bool create_if_absent, const std::string& key_path, const std::string& tmp_path,
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080036 KeyBuffer* key, bool keepOld = true);
Paul Crowleyf71ace32016-06-02 11:01:19 -070037
38} // namespace vold
39} // namespace android
40
41#endif