Fix fingerprint-bound keystore keys.
Bug: 71513415
Test: Manually tested with two different apps
Change-Id: I510bf4da9443495bb4719399d511d26e26cfc731
diff --git a/keystore/operation.h b/keystore/operation.h
index 389f9f8..6f640da 100644
--- a/keystore/operation.h
+++ b/keystore/operation.h
@@ -49,7 +49,7 @@
Operation(Operation&&) = default;
Operation(const Operation&) = delete;
- bool hasAuthToken() const { return authToken.mac.size() == 0; }
+ bool hasAuthToken() const { return authToken.mac.size() != 0; }
uint64_t handle;
uint64_t keyid;