640a1a9f43
Now that FDE support has been removed, encrypt_inplace() is only used by metadata encryption, which passes false for the set_progress_properties parameter. Therefore, remove the set_progress_properties parameter and the associated code to update the "vold.encrypt_inplace" and "vold.encrypt_time_remaining" system properties. Note that encrypt_inplace() still keeps track of its progress to some extent, for the purpose of printing log messages; that hasn't changed. Bug: 208476087 Change-Id: If695db1c4e23f568ff865bccc9fc1b98148815be
26 lines
849 B
C++
26 lines
849 B
C++
/*
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef _ENCRYPT_INPLACE_H
|
|
#define _ENCRYPT_INPLACE_H
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
bool encrypt_inplace(const std::string& crypto_blkdev, const std::string& real_blkdev,
|
|
uint64_t nr_sec);
|
|
|
|
#endif
|