commit | 9125680878a25f5a988ab731b7bf6ac81fb9d11a | [log] [tgz] |
---|---|---|
author | Shawn Willden <swillden@google.com> | Mon May 03 16:18:58 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon May 03 16:18:58 2021 +0000 |
tree | e77ff875ddbc4851e170162df18ad818e601d1b4 | |
parent | 26bb48d97259acc60ae8bb772b022a3803079960 [diff] | |
parent | ff9fce151e224fda53c7df6693e49c912ab9fb7e [diff] |
Merge "AttestationKey documentation" am: c46f9da49f am: 5df02652c1 am: 237ecec162 am: ff9fce151e Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1674665 Change-Id: I1707ef6d258f66d9055e271e95687782e8eed9c8
diff --git a/security/keymint/aidl/android/hardware/security/keymint/AttestationKey.aidl b/security/keymint/aidl/android/hardware/security/keymint/AttestationKey.aidl index b4bc60c..4e3008f 100644 --- a/security/keymint/aidl/android/hardware/security/keymint/AttestationKey.aidl +++ b/security/keymint/aidl/android/hardware/security/keymint/AttestationKey.aidl
@@ -27,7 +27,19 @@ @VintfStability @RustDerive(Clone=true, Eq=true, PartialEq=true, Ord=true, PartialOrd=true, Hash=true) parcelable AttestationKey { + /** + * Key blob containing a key pair with KeyPurpose::ATTEST_KEY + */ byte[] keyBlob; + + /** + * Key parameters needed to use the key in keyBlob, notably Tag::APPLICATION_ID and + * Tag::APPLICATION_DATA, if they were provided during generation of the key in keyBlob. + */ KeyParameter[] attestKeyParams; + + /** + * The issuerSubjectName to use in the generated attestation. + */ byte[] issuerSubjectName; }