Hon Ching(Vicky) Lo
2014-12-24 19:37:48 UTC
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Trousers".
The branch, master has been updated
via 2547f81cc156eddc3dd7248e20b9e4b9dcaeb57f (commit)
via 93e6d7a75710c0212839f7e8c186f72d0af40a16 (commit)
from 0317141799e03798d42a42cf84d7680159d63df3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://trousers.git.sourceforge.net/git/gitweb.cgi?p=trousers/trousers;a=commitdiff;h=2547f81cc156eddc3dd7248e20b9e4b9dcaeb57f
commit 2547f81cc156eddc3dd7248e20b9e4b9dcaeb57f
Author: Hon Ching(Vicky) Lo <***@linux.vnet.ibm.com>
Date: Wed Nov 19 17:10:05 2014 -0500
Added comment to tpm.h file
Signed-off-by: Hon Ching(Vicky) Lo<***@linux.vnet.ibm.com>
diff --git a/src/include/tss/tpm.h b/src/include/tss/tpm.h
index a9057f3..fc783a7 100644
--- a/src/include/tss/tpm.h
+++ b/src/include/tss/tpm.h
@@ -1181,6 +1181,10 @@ typedef UINT32 TPM_NV_INDEX;
#define TPM_NV_INDEX_LOCK ((UINT32)0xffffffff)
#define TPM_NV_INDEX0 ((UINT32)0x00000000)
#define TPM_NV_INDEX_DIR ((UINT32)0x10000001)
+// The reserved index values MAY have their D bit set by the
+// TPM vendor to permanently reserve the index in the TPM.
+// e.g. the typical EK certificate would have the D bit set
+// so the actual address would be 1000f000
#define TPM_NV_INDEX_EKCert ((UINT32)0x0000f000)
#define TPM_NV_INDEX_TPM_CC ((UINT32)0x0000f001)
#define TPM_NV_INDEX_PlatformCert ((UINT32)0x0000f002)
http://trousers.git.sourceforge.net/git/gitweb.cgi?p=trousers/trousers;a=commitdiff;h=93e6d7a75710c0212839f7e8c186f72d0af40a16
commit 93e6d7a75710c0212839f7e8c186f72d0af40a16
Author: Krzysztof Kotlenga <***@sims.pl>
Date: Tue Nov 18 21:05:16 2014 -0500
man: Correct references to Tspi_Hash_UpdateHashValue
diff --git a/man/man3/Tspi_Hash_GetHashValue.3 b/man/man3/Tspi_Hash_GetHashValue.3
index ffe7f54..b45b8af 100644
--- a/man/man3/Tspi_Hash_GetHashValue.3
+++ b/man/man3/Tspi_Hash_GetHashValue.3
@@ -93,6 +93,6 @@ Software Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_Sign\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_Sign\fR(3),
\fBTspi_Hash_VerifySignature\fR(3), \fBTspi_Hash_SetHashValue\fR(3).
diff --git a/man/man3/Tspi_Hash_SetHashValue.3 b/man/man3/Tspi_Hash_SetHashValue.3
index b157c71..cd16ba1 100644
--- a/man/man3/Tspi_Hash_SetHashValue.3
+++ b/man/man3/Tspi_Hash_SetHashValue.3
@@ -93,6 +93,6 @@ Software Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_Sign\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_Sign\fR(3),
\fBTspi_Hash_GetHashValue\fR(3).
diff --git a/man/man3/Tspi_Hash_Sign.3 b/man/man3/Tspi_Hash_Sign.3
index c286e85..6d46fc5 100644
--- a/man/man3/Tspi_Hash_Sign.3
+++ b/man/man3/Tspi_Hash_Sign.3
@@ -48,7 +48,7 @@ Tspi_Hash_Sign \- sign the hash data of an object with a signing key
\fBTspi_Hash_Sign\fR signs the hash data of an
object with a given signing key. The data must be set at the hash
instance associated with \fIhHash\fR by calling
-\fBTspi_Hash_SetHashValue\fR or \fBTspi_Hash_UpdateHash\fR. The
+\fBTspi_Hash_SetHashValue\fR or \fBTspi_Hash_UpdateHashValue\fR. The
\fBTspi_Hash_Sign\fR method allocates a memory block for the
\fIprgbSignature\fR data. This memory must be released using
\fBTspi_Context_FreeMemory\fR.
@@ -103,6 +103,6 @@ Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
\fBTspi_Hash_VerifySignature\fR(3).
diff --git a/man/man3/Tspi_Hash_VerifySignature.3 b/man/man3/Tspi_Hash_VerifySignature.3
index d6d7f87..47ffd74 100644
--- a/man/man3/Tspi_Hash_VerifySignature.3
+++ b/man/man3/Tspi_Hash_VerifySignature.3
@@ -100,6 +100,6 @@ Software Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
\fBTspi_Hash_Sign\fR(3), \fRTspi_Hash_GetHashValue\fR(3).
-----------------------------------------------------------------------
Summary of changes:
man/man3/Tspi_Hash_GetHashValue.3 | 2 +-
man/man3/Tspi_Hash_SetHashValue.3 | 2 +-
man/man3/Tspi_Hash_Sign.3 | 4 ++--
man/man3/Tspi_Hash_VerifySignature.3 | 2 +-
src/include/tss/tpm.h | 4 ++++
5 files changed, 9 insertions(+), 5 deletions(-)
hooks/post-receive
generated because a ref change was pushed to the repository containing
the project "Trousers".
The branch, master has been updated
via 2547f81cc156eddc3dd7248e20b9e4b9dcaeb57f (commit)
via 93e6d7a75710c0212839f7e8c186f72d0af40a16 (commit)
from 0317141799e03798d42a42cf84d7680159d63df3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://trousers.git.sourceforge.net/git/gitweb.cgi?p=trousers/trousers;a=commitdiff;h=2547f81cc156eddc3dd7248e20b9e4b9dcaeb57f
commit 2547f81cc156eddc3dd7248e20b9e4b9dcaeb57f
Author: Hon Ching(Vicky) Lo <***@linux.vnet.ibm.com>
Date: Wed Nov 19 17:10:05 2014 -0500
Added comment to tpm.h file
Signed-off-by: Hon Ching(Vicky) Lo<***@linux.vnet.ibm.com>
diff --git a/src/include/tss/tpm.h b/src/include/tss/tpm.h
index a9057f3..fc783a7 100644
--- a/src/include/tss/tpm.h
+++ b/src/include/tss/tpm.h
@@ -1181,6 +1181,10 @@ typedef UINT32 TPM_NV_INDEX;
#define TPM_NV_INDEX_LOCK ((UINT32)0xffffffff)
#define TPM_NV_INDEX0 ((UINT32)0x00000000)
#define TPM_NV_INDEX_DIR ((UINT32)0x10000001)
+// The reserved index values MAY have their D bit set by the
+// TPM vendor to permanently reserve the index in the TPM.
+// e.g. the typical EK certificate would have the D bit set
+// so the actual address would be 1000f000
#define TPM_NV_INDEX_EKCert ((UINT32)0x0000f000)
#define TPM_NV_INDEX_TPM_CC ((UINT32)0x0000f001)
#define TPM_NV_INDEX_PlatformCert ((UINT32)0x0000f002)
http://trousers.git.sourceforge.net/git/gitweb.cgi?p=trousers/trousers;a=commitdiff;h=93e6d7a75710c0212839f7e8c186f72d0af40a16
commit 93e6d7a75710c0212839f7e8c186f72d0af40a16
Author: Krzysztof Kotlenga <***@sims.pl>
Date: Tue Nov 18 21:05:16 2014 -0500
man: Correct references to Tspi_Hash_UpdateHashValue
diff --git a/man/man3/Tspi_Hash_GetHashValue.3 b/man/man3/Tspi_Hash_GetHashValue.3
index ffe7f54..b45b8af 100644
--- a/man/man3/Tspi_Hash_GetHashValue.3
+++ b/man/man3/Tspi_Hash_GetHashValue.3
@@ -93,6 +93,6 @@ Software Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_Sign\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_Sign\fR(3),
\fBTspi_Hash_VerifySignature\fR(3), \fBTspi_Hash_SetHashValue\fR(3).
diff --git a/man/man3/Tspi_Hash_SetHashValue.3 b/man/man3/Tspi_Hash_SetHashValue.3
index b157c71..cd16ba1 100644
--- a/man/man3/Tspi_Hash_SetHashValue.3
+++ b/man/man3/Tspi_Hash_SetHashValue.3
@@ -93,6 +93,6 @@ Software Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_Sign\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_Sign\fR(3),
\fBTspi_Hash_GetHashValue\fR(3).
diff --git a/man/man3/Tspi_Hash_Sign.3 b/man/man3/Tspi_Hash_Sign.3
index c286e85..6d46fc5 100644
--- a/man/man3/Tspi_Hash_Sign.3
+++ b/man/man3/Tspi_Hash_Sign.3
@@ -48,7 +48,7 @@ Tspi_Hash_Sign \- sign the hash data of an object with a signing key
\fBTspi_Hash_Sign\fR signs the hash data of an
object with a given signing key. The data must be set at the hash
instance associated with \fIhHash\fR by calling
-\fBTspi_Hash_SetHashValue\fR or \fBTspi_Hash_UpdateHash\fR. The
+\fBTspi_Hash_SetHashValue\fR or \fBTspi_Hash_UpdateHashValue\fR. The
\fBTspi_Hash_Sign\fR method allocates a memory block for the
\fIprgbSignature\fR data. This memory must be released using
\fBTspi_Context_FreeMemory\fR.
@@ -103,6 +103,6 @@ Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
\fBTspi_Hash_VerifySignature\fR(3).
diff --git a/man/man3/Tspi_Hash_VerifySignature.3 b/man/man3/Tspi_Hash_VerifySignature.3
index d6d7f87..47ffd74 100644
--- a/man/man3/Tspi_Hash_VerifySignature.3
+++ b/man/man3/Tspi_Hash_VerifySignature.3
@@ -100,6 +100,6 @@ Software Specification version 1.1 Golden
.SH "SEE ALSO"
.PP
-\fBTspi_Hash_UpdateHash\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
+\fBTspi_Hash_UpdateHashValue\fR(3), \fBTspi_Hash_SetHashValue\fR(3),
\fBTspi_Hash_Sign\fR(3), \fRTspi_Hash_GetHashValue\fR(3).
-----------------------------------------------------------------------
Summary of changes:
man/man3/Tspi_Hash_GetHashValue.3 | 2 +-
man/man3/Tspi_Hash_SetHashValue.3 | 2 +-
man/man3/Tspi_Hash_Sign.3 | 4 ++--
man/man3/Tspi_Hash_VerifySignature.3 | 2 +-
src/include/tss/tpm.h | 4 ++++
5 files changed, 9 insertions(+), 5 deletions(-)
hooks/post-receive
--
Trousers
Trousers