From 606167c66bad6ad2fa2b27ea4b47e5f59e2f3bdd Mon Sep 17 00:00:00 2001 From: Andres Morales Date: Mon, 13 Apr 2015 10:21:32 -0700 Subject: hw_auth_token: make timestamp 64 bits Change-Id: I1f871300cd2edb407479e1e38284b068db364b38 --- include/hardware/hw_auth_token.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/hardware/hw_auth_token.h b/include/hardware/hw_auth_token.h index 87c4006..40283cb 100644 --- a/include/hardware/hw_auth_token.h +++ b/include/hardware/hw_auth_token.h @@ -42,7 +42,7 @@ typedef struct __attribute__((__packed__)) { uint64_t user_id; // secure user ID, not Android user ID uint64_t authenticator_id; // secure authenticator ID uint32_t authenticator_type; // hw_authenticator_type_t, in network order - uint32_t timestamp; // in network order + uint64_t timestamp; // in network order uint8_t hmac[32]; } hw_auth_token_t; -- cgit v1.1