Merge "Set a property if seed binding is enabled."

This commit is contained in:
Keith Mok 2021-09-01 23:55:08 +00:00 committed by Gerrit Code Review
commit cc63a93fd6

View file

@ -712,6 +712,7 @@ bool setKeyStorageBindingSeed(const std::vector<uint8_t>& seed) {
case StorageBindingInfo::State::UNINITIALIZED: case StorageBindingInfo::State::UNINITIALIZED:
storage_binding_info.state = StorageBindingInfo::State::IN_USE; storage_binding_info.state = StorageBindingInfo::State::IN_USE;
storage_binding_info.seed = seed; storage_binding_info.seed = seed;
android::base::SetProperty("vold.storage_seed_bound", "1");
return true; return true;
case StorageBindingInfo::State::IN_USE: case StorageBindingInfo::State::IN_USE:
LOG(ERROR) << "key storage binding seed already set"; LOG(ERROR) << "key storage binding seed already set";