summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Morales <anmorales@google.com>2015-04-13 10:21:32 -0700
committerAndres Morales <anmorales@google.com>2015-04-13 17:58:01 +0000
commit606167c66bad6ad2fa2b27ea4b47e5f59e2f3bdd (patch)
tree53617dfe252ae2dd7c42cc8160cd2dc9246bd233
parent8632c99f9bace571fe7408fe6be5c5712e449ca8 (diff)
downloadlibhardware-606167c66bad6ad2fa2b27ea4b47e5f59e2f3bdd.tar.gz
hw_auth_token: make timestamp 64 bits
Change-Id: I1f871300cd2edb407479e1e38284b068db364b38
-rw-r--r--include/hardware/hw_auth_token.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hardware/hw_auth_token.h b/include/hardware/hw_auth_token.h
index 87c40060..40283cb2 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;