mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Without this extra information passed upfront it's not practical to implement a HAL which incrementally builds up cryptographically authenticated data. Two new methods are added to facilitate this and the HAL version number is bumped to 2. Bug: 154631410 Test: atest VtsHalIdentityTargetTest Test: atest android.security.identity.cts Change-Id: Iff63dfa2c4485c8768e06e7f6d70e940cfc8f68e
26 lines
456 B
Plaintext
26 lines
456 B
Plaintext
aidl_interface {
|
|
name: "android.hardware.identity",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"android/hardware/identity/*.aidl",
|
|
],
|
|
imports: [
|
|
"android.hardware.keymaster",
|
|
],
|
|
stability: "vintf",
|
|
backend: {
|
|
java: {
|
|
platform_apis: true,
|
|
},
|
|
ndk: {
|
|
vndk: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
},
|
|
versions: [
|
|
"1",
|
|
"2",
|
|
],
|
|
}
|