summaryrefslogtreecommitdiffstats
path: root/confirmationui
Commit message (Collapse)AuthorAgeFilesLines
* Update makefies: no 'types'Steven Moreland2019-03-041-7/+0
| | | | | | Bug: 123976090 Test: N/A Change-Id: I30fb04c81889b62775e1b764b965fdb0f893de17
* pack VTS cc_test binaries as general-testsKeun Soo YIM2018-12-072-0/+2
| | | | | | | Test: make general-tests Bug: 120093339 Merged-In: I363450d205868f900e4925ccff1430e2a569f2a4 Change-Id: I363450d205868f900e4925ccff1430e2a569f2a4
* Fix implicit fallthrough warnings.Chih-Hung Hsieh2018-10-151-0/+3
| | | | | | Test: make checkbuild Bug: 112564944 Change-Id: Iaaa0e2c325e860572d058ae27a7ad7dc00134564
* confirmationui: explicitly declare only one thread.Steven Moreland2018-05-251-0/+1
| | | | | | | | | Due to an unclear API, wireless_charger accidentally started two threads. Bug: 80102279 Test: use lshal to verify that the service only has one thread Change-Id: Ic6bdb6ef0025173f4388f0550e00a6b4fc2e21df
* Fix for bug in Fix for wrongly initialized test keyJanis Danisevskis2018-04-261-1/+2
| | | | | | | | | | | With the last patch I exposed the auth token key to users of the GenericOperation. But because the auth token key is never used in the default implementation it did not show that the setHmacKey method did not actually work. This patch fixes it. Bug: 78456249 Test: Compile trusted app based on the GenericOperation Change-Id: I25a80f985ce500e3658421cac62421133cc5b788
* Fix wrongly initialized test key.Janis Danisevskis2018-04-265-32/+36
| | | | | | | | | | | | | | | According to spec the test key has 32 bytes set to TextKeyBits::BYTE. The VTS test and default implmementation only set the first 16 bytes and left the remaining 16 bytes zero. This bug fixes both, the VTS test and the default implementation. Also some long overdue changes to how the auth token key is handled by the generic operation. Bug: 78456249 Test: VtsHalConfirmationUIV1_0TargetTest Change-Id: I509f2c2a99704ee00625e6f6169479771a3bc17a
* Add Vendor comand to ConfirmationUI support msg_formattingJanis Danisevskis2018-03-221-1/+3
| | | | | | | | | | | This is not a HAL change. It just adds a command to msg_formatting.h as a service to vendors who have to augment the protocol between the HAL service and the TA or other implementation with janitorial commands that don't effect the HAL interface. Bug: 76152930 Test: No functional change Change-Id: I5d4e5dadea29d4c7d51753939eda6c3f3571fae1
* Fix violation of least privilege principleJanis Danisevskis2018-03-141-2/+2
| | | | | | | | The confirmationui HAL does not need to run as user system. Bug: 63928580 Test: All required services boot and can access what they need Change-Id: Ic2d6edabf8cca8384a7e0ce49dfc5445a6ec1658
* Some changes required for the actual integration with a GUI rendererJanis Danisevskis2018-03-143-18/+45
| | | | | | | | | | These changes accumulated during the integration with the Pixel specific impelemtation. The make it easiser to integrate an GUI renderer with the core logic. Bug: 63928580 Test: VTS tests and manual tests Change-Id: I7001f60709ce806a16f098492bdb71eb05e6ca9a
* ConfirmationUI VTS testsJanis Danisevskis2018-02-213-0/+461
| | | | | | Bug: 63928580 Test: VtsHalConfirmationUIV1_0TargetTest Change-Id: I964ac8fe0d36ec27e873aca748487ebc99d67693
* ConfirmationUI reference implementationJanis Danisevskis2018-01-248-0/+336
| | | | | | | | | | | This reference implementation implements the core logic of the confirmation provider including the cryptographic operations. For a full implementation a user interface and a few policy checks are missing. Bug: 63928580 Test: VtsHalConfirmationUIV1_0TargetTest Change-Id: I22ca138ed612979223f8e83792b525a31709e0fe
* Add confirmation UI support libarayJanis Danisevskis2018-01-2411-0/+1758
| | | | | | | | | | | | | | | | | Includes: A light weight CBOR generator This patch adds a header only CBOR generator and unit tests. It allows expressing CBOR datastructures in C++ for subsequent serialization. The implementation performs no memory allocation and only depends on stdint.h (for (u)intx_t) and stddefs.h (for size_t). It is tailored for use in constrained environments such as TEEs. Convenience method for generating a SHA256 HMAC Bug: 63928580 Test: android.hardware.confirmationui@support-lib-tests Change-Id: I1d93a85503f861281e71e09b1ede5cbb74219694
* ConfirmationUI HAL definitionJanis Danisevskis2018-01-244-0/+273
HAL definition for high assurance confirmation providers. High assurance confirmation providers allow relying parties to prompt the user for confirming a short piece of information. If the user confirms, the result is a signed message indicating that the user has seen the message. For a high assurance confirmation provider this must also be true if Android and the Linux kernel are compromised. Bug: 63928580 Test: VTS tests in the following commit Change-Id: I72017b39c01b4333d0146c648637a19fafcb7278