diff options
author | David Zeuthen <zeuthen@google.com> | 2020-10-16 11:27:24 -0400 |
---|---|---|
committer | David Zeuthen <zeuthen@google.com> | 2021-01-23 13:35:57 -0500 |
commit | 49f2d2558ac417d090dfae9c78ab372d71e5140c (patch) | |
tree | be240ccdfb0fa1e45aa03648cb385ff7ce82d84f /identity/aidl/vts/UserAuthTests.cpp | |
parent | eafa06164d1e1bafbe20562d540ab5420bb0f825 (diff) |
Identity Credential changes for Android 12
- Add IIdentityCredential.deleteCredentialWithChallenge()
- Deprecate IIdentityCredential.deleteCredential()
- Add IIdentityCredential.proveOwership()
- Add IIdentityCredential.updateCredential()
- Add ProofOfBinding CBOR to AuthenticationKey X.509 certificate
- Document which API versions new methods/features appeared in.
- Mention need to declare android.hardware.identity_credential system
feature (w/ feature version number) and do this for the default
implementation.
Bug: 170146643
Test: atest VtsHalIdentityTargetTest
Change-Id: Ib47c7caa5f3d6fff6919f019eee44a735dba9cf8
Diffstat (limited to 'identity/aidl/vts/UserAuthTests.cpp')
-rw-r--r-- | identity/aidl/vts/UserAuthTests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/identity/aidl/vts/UserAuthTests.cpp b/identity/aidl/vts/UserAuthTests.cpp index 327493c9a0..ef89d1cafd 100644 --- a/identity/aidl/vts/UserAuthTests.cpp +++ b/identity/aidl/vts/UserAuthTests.cpp @@ -32,7 +32,7 @@ #include <map> #include <utility> -#include "VtsIdentityTestUtils.h" +#include "Util.h" namespace android::hardware::identity { @@ -145,7 +145,7 @@ void UserAuthTests::provisionData() { EXPECT_TRUE(status.isOk()) << status.exceptionCode() << ": " << status.exceptionMessage(); } -// From ReaderAuthTest.cpp - TODO: consolidate with VtsIdentityTestUtils.h +// From ReaderAuthTest.cpp - TODO: consolidate with Util.h pair<vector<uint8_t>, vector<uint8_t>> generateReaderKey(); vector<uint8_t> generateReaderCert(const vector<uint8_t>& publicKey, const vector<uint8_t>& signingKey); |