Merge "On-device signing: Use correct deleteKey() instance." am: d2dede4e7b
Original change: https://android-review.googlesource.com/c/platform/system/security/+/1748471 Change-Id: I8b39c59d5720f1558614b546f165e1e6bc7174c9
This commit is contained in:
commit
61872e9245
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ Result<void> KeystoreHmacKey::verify(const std::string& message,
|
|||
}
|
||||
|
||||
Result<void> KeystoreHmacKey::deleteKey() const {
|
||||
auto status = mSecurityLevel->deleteKey(mDescriptor);
|
||||
auto status = mService->deleteKey(mDescriptor);
|
||||
if (!status.isOk()) {
|
||||
return Error() << "Failed to delete HMAC key: " << status;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue