diff options
author | Andres Morales <anmorales@google.com> | 2015-04-13 10:21:32 -0700 |
---|---|---|
committer | Andres Morales <anmorales@google.com> | 2015-04-13 17:58:01 +0000 |
commit | 606167c66bad6ad2fa2b27ea4b47e5f59e2f3bdd (patch) | |
tree | 53617dfe252ae2dd7c42cc8160cd2dc9246bd233 /include | |
parent | 8632c99f9bace571fe7408fe6be5c5712e449ca8 (diff) | |
download | hardware_libhardware-606167c66bad6ad2fa2b27ea4b47e5f59e2f3bdd.zip hardware_libhardware-606167c66bad6ad2fa2b27ea4b47e5f59e2f3bdd.tar.gz hardware_libhardware-606167c66bad6ad2fa2b27ea4b47e5f59e2f3bdd.tar.bz2 |
hw_auth_token: make timestamp 64 bits
Change-Id: I1f871300cd2edb407479e1e38284b068db364b38
Diffstat (limited to 'include')
-rw-r--r-- | include/hardware/hw_auth_token.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |