mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* PATCH] tpm: Fix pubek parsing
@ 2005-06-24 20:27 Kylene Jo Hall
  0 siblings, 0 replies; only message in thread
From: Kylene Jo Hall @ 2005-06-24 20:27 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel

Fix parsing of the PUBEK for display which was leading to showing the
wrong modulus length and modulus.

Signed-off-by: Kylene Hall <kjhall@us.ibm.com>
--- 
Index: drivers/char/tpm/tpm.c
===================================================================
RCS file: /cvsroot/tpmdd/tpmdd/drivers/char/tpm/tpm.c,v
retrieving revision 1.28
diff -u -p -r1.28 tpm.c
--- ./drivers/char/tpm/tpm.c	15 Jun 2005 17:15:18 -0000	1.28
+++ ./drivers/char/tpm/tpm.c	23 Jun 2005 21:44:54 -0000
@@ -257,10 +266,10 @@ ssize_t tpm_show_pubek(struct device *de
 		    data[15], data[16], data[17], data[22], data[23],
 		    data[24], data[25], data[26], data[27], data[28],
 		    data[29], data[30], data[31], data[32], data[33],
-		    be32_to_cpu(*((__be32 *) (data + 32))));
+		    be32_to_cpu(*((__be32 *) (data + 34))));
 
 	for (i = 0; i < 256; i++) {
-		str += sprintf(str, "%02X ", data[i + 39]);
+		str += sprintf(str, "%02X ", data[i + 38]);
 		if ((i + 1) % 16 == 0)
 			str += sprintf(str, "\n");
 	}



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-06-24 20:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-24 20:27 PATCH] tpm: Fix pubek parsing Kylene Jo Hall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®