summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Kasatkin2012-02-02 09:46:49 +0100
committerJames Morris2012-02-10 11:54:00 +0100
commitbbd36568594d091e682a1975ef4ee41d808de0bc (patch)
treebe8abf82216c211e5895e31ef57cf0ed1c8f4f96
parentsecurity: Yama LSM (diff)
downloadkernel-qcow2-linux-bbd36568594d091e682a1975ef4ee41d808de0bc.tar.gz
kernel-qcow2-linux-bbd36568594d091e682a1975ef4ee41d808de0bc.tar.xz
kernel-qcow2-linux-bbd36568594d091e682a1975ef4ee41d808de0bc.zip
digsig: changed type of the timestamp
time_t was used in the signature and key packet headers, which is typedef of long and is different on 32 and 64 bit architectures. Signature and key format should be independent of architecture. Similar to GPG, I have changed the type to uint32_t. Signed-off-by: Dmitry Kasatkin <dmitry.kasatkin@intel.com> Signed-off-by: James Morris <jmorris@namei.org>
-rw-r--r--include/linux/digsig.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/digsig.h b/include/linux/digsig.h
index b01558b15814..6f85a070bb45 100644
--- a/include/linux/digsig.h
+++ b/include/linux/digsig.h
@@ -30,7 +30,7 @@ enum digest_algo {
struct pubkey_hdr {
uint8_t version; /* key format version */
- time_t timestamp; /* key made, always 0 for now */
+ uint32_t timestamp; /* key made, always 0 for now */
uint8_t algo;
uint8_t nmpi;
char mpi[0];
@@ -38,7 +38,7 @@ struct pubkey_hdr {
struct signature_hdr {
uint8_t version; /* signature format version */
- time_t timestamp; /* signature made */
+ uint32_t timestamp; /* signature made */
uint8_t algo;
uint8_t hash;
uint8_t keyid[8];