summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndres Morales2015-04-09 21:23:48 -0500
committerAndres Morales2015-04-10 21:56:07 -0500
commit851b57c1f81bd3572cf5908611ba029be934c706 (patch)
tree783505d76341c9b8af324dce165767de2156f60a /gatekeeperd/IGateKeeperService.h
parent9bbd0a5c92ed92c295d2f5ab3befdf3efe490bc9 (diff)
downloadplatform-system-core-851b57c1f81bd3572cf5908611ba029be934c706.tar.gz
platform-system-core-851b57c1f81bd3572cf5908611ba029be934c706.tar.xz
platform-system-core-851b57c1f81bd3572cf5908611ba029be934c706.zip
Add challenge to verify call
required for enrolling secondary auth form factors Change-Id: Ia3e1d47f988bca1bb1a0e713c000886e60b4e839
Diffstat (limited to 'gatekeeperd/IGateKeeperService.h')
-rw-r--r--gatekeeperd/IGateKeeperService.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gatekeeperd/IGateKeeperService.h b/gatekeeperd/IGateKeeperService.h
index 7d8572cec..90d302907 100644
--- a/gatekeeperd/IGateKeeperService.h
+++ b/gatekeeperd/IGateKeeperService.h
@@ -51,7 +51,7 @@ public:
51 * Verifies a password previously enrolled with the GateKeeper. 51 * Verifies a password previously enrolled with the GateKeeper.
52 * Returns 0 on success, negative on failure. 52 * Returns 0 on success, negative on failure.
53 */ 53 */
54 virtual status_t verify(uint32_t uid, 54 virtual status_t verify(uint32_t uid, uint64_t challenge,
55 const uint8_t *enrolled_password_handle, uint32_t enrolled_password_handle_length, 55 const uint8_t *enrolled_password_handle, uint32_t enrolled_password_handle_length,
56 const uint8_t *provided_password, uint32_t provided_password_length) = 0; 56 const uint8_t *provided_password, uint32_t provided_password_length) = 0;
57}; 57};