diff --git a/.gitignore b/.gitignore index 755aa43..467a10a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/ibmtss1.6.0.tar.gz +SOURCES/ibmtss1331.tar.gz diff --git a/.tss2.metadata b/.tss2.metadata index d8a882d..8ffb8a9 100644 --- a/.tss2.metadata +++ b/.tss2.metadata @@ -1 +1 @@ -fcd86e864f69443f72ecbf18f26e39844aefee44 SOURCES/ibmtss1.6.0.tar.gz +39a13864ad42cafae27683fa52bc1d5d21dad39c SOURCES/ibmtss1331.tar.gz diff --git a/SOURCES/0001-tss2-fix-bounds-check-in-IMA_Event_PcrExtend.patch b/SOURCES/0001-tss2-fix-bounds-check-in-IMA_Event_PcrExtend.patch new file mode 100644 index 0000000..7a4d579 --- /dev/null +++ b/SOURCES/0001-tss2-fix-bounds-check-in-IMA_Event_PcrExtend.patch @@ -0,0 +1,31 @@ +From 8f232900d3b8f8af65a029f49c17ee53d3cca122 Mon Sep 17 00:00:00 2001 +From: Jerry Snitselaar +Date: Thu, 6 Jun 2019 14:53:18 -0700 +Subject: [PATCH] tss2: fix bounds check in IMA_Event_PcrExtend + +pcrs is declared with IMPLEMENTATION_PCR elements, +so the index bounds check should be >= IMPLEMENTATION_PCR +since indexing at value IMPLEMENTATION_PCR would be off the +end of the array. This was flagged by coverity. + +Signed-off-by: Jerry Snitselaar +--- + utils/imalib.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/utils/imalib.c b/utils/imalib.c +index 4957c1b..a841cd6 100644 +--- a/utils/imalib.c ++++ b/utils/imalib.c +@@ -1306,7 +1306,7 @@ uint32_t IMA_Event_PcrExtend(TPMT_HA pcrs[IMA_PCR_BANKS][IMPLEMENTATION_PCR], + + /* validate PCR number */ + if (rc == 0) { +- if (imaEvent->pcrIndex > IMPLEMENTATION_PCR) { ++ if (imaEvent->pcrIndex >= IMPLEMENTATION_PCR) { + printf("ERROR: IMA_Event_PcrExtend: PCR number %u out of range\n", imaEvent->pcrIndex); + rc = TSS_RC_BAD_PROPERTY; + } +-- +2.21.0 + diff --git a/SOURCES/flags-fixup.patch b/SOURCES/flags-fixup.patch new file mode 100644 index 0000000..a92a541 --- /dev/null +++ b/SOURCES/flags-fixup.patch @@ -0,0 +1,33 @@ +diff -ur tss2-1234/utils/makefile-common tss2-1234-new/utils/makefile-common +--- tss2-1234/utils/makefile-common 2018-05-29 12:00:46.000000000 -0700 ++++ tss2-1234-new/utils/makefile-common 2018-10-02 15:10:20.783078580 -0700 +@@ -44,7 +44,7 @@ + CCFLAGS += \ + -Wall -W -Wmissing-declarations -Wmissing-prototypes -Wnested-externs \ + -Wformat=2 -Wold-style-definition -Wno-self-assign \ +- -ggdb -O0 -c ++ -ggdb -c + + # to compile with optimizations on (warning will result) + # -O3 -c +diff -ur tss2-1234/utils/makefile.fedora tss2-1234-new/utils/makefile.fedora +--- tss2-1234/utils/makefile.fedora 2018-05-15 10:07:20.000000000 -0700 ++++ tss2-1234-new/utils/makefile.fedora 2018-10-02 15:11:33.909083615 -0700 +@@ -71,7 +71,7 @@ + + # compile - common flags for TSS library and applications + +-CCFLAGS += -DTPM_POSIX ++CCFLAGS += -DTPM_POSIX -DTPM_INTERFACE_TYPE_DEFAULT="\"dev\"" -DTPM_DEVICE_DEFAULT="\"/dev/tpmrm0\"" + + # example of pointing to a locally built openssl 1.1 + # CCFLAGS += -I/home/kgold/openssl-1.1.0c/include +@@ -119,7 +119,7 @@ + LNLFLAGS += -shared -Wl,-z,now + + # This is an alternative to using the bfd linker on Ubuntu +-# LNLLIBS += -lcrypto ++LNLLIBS += -lcrypto + + # link - for applications, TSS path, TSS and OpenSSl libraries + diff --git a/SOURCES/hash_generate.patch b/SOURCES/hash_generate.patch new file mode 100644 index 0000000..f6a5387 --- /dev/null +++ b/SOURCES/hash_generate.patch @@ -0,0 +1,18 @@ +diff -ur tss2-1234/utils/policymaker.c tss2-1234-new/utils/policymaker.c +--- tss2-1234/utils/policymaker.c 2018-10-18 12:16:59.742439220 -0700 ++++ tss2-1234-new/utils/policymaker.c 2018-10-18 12:34:34.991755536 -0700 +@@ -208,10 +208,10 @@ + } + /* hash extend */ + if ((rc == 0) && (prc != NULL)) { +- TSS_Hash_Generate(&digest, +- startSizeInBytes, (uint8_t *)&digest.digest, /* extend */ +- lineLength /2, lineBinary, +- 0, NULL); ++ rc = TSS_Hash_Generate(&digest, ++ startSizeInBytes, (uint8_t *)&digest.digest, /* extend */ ++ lineLength /2, lineBinary, ++ 0, NULL); + } + if ((rc == 0) && (prc != NULL)) { + if (verbose) TSS_PrintAll("intermediate policy digest", diff --git a/SOURCES/tss2-1.6.0-manpage-cleanup.patch b/SOURCES/tss2-1.6.0-manpage-cleanup.patch deleted file mode 100644 index 3a452de..0000000 --- a/SOURCES/tss2-1.6.0-manpage-cleanup.patch +++ /dev/null @@ -1,1534 +0,0 @@ -diff -ur tss2/utils/man/man1/tssactivatecredential.1 tss2-new/utils/man/man1/tssactivatecredential.1 ---- tss2/utils/man/man1/tssactivatecredential.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssactivatecredential.1 2021-02-08 16:31:38.276692836 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH ACTIVATECREDENTIAL "1" "November 2020" "activatecredential 1.6" "User Commands" -+.TH TSSACTIVATECREDENTIAL "1" "November 2020" "tssactivatecredential 1.6" "User Commands" - .SH NAME --activatecredential \- Runs TPM2 activatecredential -+tssactivatecredential \- Runs TPM2 activatecredential - .SH DESCRIPTION - activatecredential - .PP -diff -ur tss2/utils/man/man1/tsscertify.1 tss2-new/utils/man/man1/tsscertify.1 ---- tss2/utils/man/man1/tsscertify.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscertify.1 2021-02-08 16:31:59.975404868 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CERTIFY "1" "November 2020" "certify 1.6" "User Commands" -+.TH TSSCERTIFY "1" "November 2020" "tsscertify 1.6" "User Commands" - .SH NAME --certify \- Runs TPM2 certify -+tsscertify \- Runs TPM2 certify - .SH DESCRIPTION - certify - .PP -diff -ur tss2/utils/man/man1/tsscertifycreation.1 tss2-new/utils/man/man1/tsscertifycreation.1 ---- tss2/utils/man/man1/tsscertifycreation.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscertifycreation.1 2021-02-08 16:32:20.162136981 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CERTIFYCREATION "1" "November 2020" "certifycreation 1.6" "User Commands" -+.TH TSSCERTIFYCREATION "1" "November 2020" "tsscertifycreation 1.6" "User Commands" - .SH NAME --certifycreation \- Runs TPM2 certifycreation -+tsscertifycreation \- Runs TPM2 certifycreation - .SH DESCRIPTION - certifycreation - .PP -diff -ur tss2/utils/man/man1/tsscertifyx509.1 tss2-new/utils/man/man1/tsscertifyx509.1 ---- tss2/utils/man/man1/tsscertifyx509.1 2020-12-22 11:02:31.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscertifyx509.1 2021-02-08 16:32:39.960874231 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CERTIFYX509 "1" "November 2020" "certifyx509 1.6" "User Commands" -+.TH TSSCERTIFYX509 "1" "November 2020" "tsscertifyx509 1.6" "User Commands" - .SH NAME --certifyx509 \- Runs TPM2 certifyx509 -+tsscertifyx509 \- Runs TPM2 certifyx509 - .SH DESCRIPTION - certifyx509 - .PP -diff -ur tss2/utils/man/man1/tsschangeeps.1 tss2-new/utils/man/man1/tsschangeeps.1 ---- tss2/utils/man/man1/tsschangeeps.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsschangeeps.1 2021-02-08 16:32:56.672652441 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CHANGEEPS "1" "November 2020" "changeeps 1.6" "User Commands" -+.TH TSSCHANGEEPS "1" "November 2020" "tsschangeeps 1.6" "User Commands" - .SH NAME --changeeps \- Runs TPM2 changeeps -+tsschangeeps \- Runs TPM2 changeeps - .SH DESCRIPTION - changeeps - .PP -diff -ur tss2/utils/man/man1/tsschangepps.1 tss2-new/utils/man/man1/tsschangepps.1 ---- tss2/utils/man/man1/tsschangepps.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsschangepps.1 2021-02-08 16:33:07.677506390 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CHANGEPPS "1" "November 2020" "changepps 1.6" "User Commands" -+.TH TSSCHANGEPPS "1" "November 2020" "tsschangepps 1.6" "User Commands" - .SH NAME --changepps \- Runs TPM2 changepps -+tsschangepps \- Runs TPM2 changepps - .SH DESCRIPTION - changepps - .PP -diff -ur tss2/utils/man/man1/tssclear.1 tss2-new/utils/man/man1/tssclear.1 ---- tss2/utils/man/man1/tssclear.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssclear.1 2021-02-08 16:33:17.967369834 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CLEAR "1" "November 2020" "clear 1.6" "User Commands" -+.TH TSSCLEAR "1" "November 2020" "tssclear 1.6" "User Commands" - .SH NAME --clear \- Runs TPM2 clear -+tssclear \- Runs TPM2 clear - .SH DESCRIPTION - clear - .PP -diff -ur tss2/utils/man/man1/tssclearcontrol.1 tss2-new/utils/man/man1/tssclearcontrol.1 ---- tss2/utils/man/man1/tssclearcontrol.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssclearcontrol.1 2021-02-08 16:33:36.186128054 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CLEARCONTROL "1" "November 2020" "clearcontrol 1.6" "User Commands" -+.TH TSSCLEARCONTROL "1" "November 2020" "tssclearcontrol 1.6" "User Commands" - .SH NAME --clearcontrol \- Runs TPM2 clearcontrol -+tssclearcontrol \- Runs TPM2 clearcontrol - .SH DESCRIPTION - clearcontrol - .PP -diff -ur tss2/utils/man/man1/tssclockrateadjust.1 tss2-new/utils/man/man1/tssclockrateadjust.1 ---- tss2/utils/man/man1/tssclockrateadjust.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssclockrateadjust.1 2021-02-08 16:33:47.150982537 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CLOCKRATEADJUST "1" "November 2020" "clockrateadjust 1.6" "User Commands" -+.TH TSSCLOCKRATEADJUST "1" "November 2020" "tssclockrateadjust 1.6" "User Commands" - .SH NAME --clockrateadjust \- Runs TPM2 clockrateadjust -+tssclockrateadjust \- Runs TPM2 clockrateadjust - .SH DESCRIPTION - clockrateadjust - .PP -diff -ur tss2/utils/man/man1/tssclockset.1 tss2-new/utils/man/man1/tssclockset.1 ---- tss2/utils/man/man1/tssclockset.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssclockset.1 2021-02-08 16:33:56.739855284 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CLOCKSET "1" "November 2020" "clockset 1.6" "User Commands" -+.TH TSSCLOCKSET "1" "November 2020" "tssclockset 1.6" "User Commands" - .SH NAME --clockset \- Runs TPM2 clockset -+tssclockset \- Runs TPM2 clockset - .SH DESCRIPTION - clockset - .PP -diff -ur tss2/utils/man/man1/tsscommit.1 tss2-new/utils/man/man1/tsscommit.1 ---- tss2/utils/man/man1/tsscommit.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscommit.1 2021-02-08 16:34:10.171678495 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH COMMIT "1" "November 2020" "commit 1.6" "User Commands" -+.TH TSSCOMMIT "1" "November 2020" "tsscommit 1.6" "User Commands" - .SH NAME --commit \- Runs TPM2 commit -+tsscommit \- Runs TPM2 commit - .SH DESCRIPTION - commit - .PP -diff -ur tss2/utils/man/man1/tsscontextload.1 tss2-new/utils/man/man1/tsscontextload.1 ---- tss2/utils/man/man1/tsscontextload.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscontextload.1 2021-02-08 16:34:31.794394389 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CONTEXTLOAD "1" "November 2020" "contextload 1.6" "User Commands" -+.TH TSSCONTEXTLOAD "1" "November 2020" "tsscontextload 1.6" "User Commands" - .SH NAME --contextload \- Runs TPM2 contextload -+tsscontextload \- Runs TPM2 contextload - .SH DESCRIPTION - contextload - .PP -diff -ur tss2/utils/man/man1/tsscontextsave.1 tss2-new/utils/man/man1/tsscontextsave.1 ---- tss2/utils/man/man1/tsscontextsave.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscontextsave.1 2021-02-08 16:34:55.760079476 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CONTEXTSAVE "1" "November 2020" "contextsave 1.6" "User Commands" -+.TH TSSCONTEXTSAVE "1" "November 2020" "tsscontextsave 1.6" "User Commands" - .SH NAME --contextsave \- Runs TPM2 contextsave -+tsscontextsave \- Runs TPM2 contextsave - .SH DESCRIPTION - contextsave - .PP -diff -ur tss2/utils/man/man1/tsscreate.1 tss2-new/utils/man/man1/tsscreate.1 ---- tss2/utils/man/man1/tsscreate.1 2020-12-22 11:02:31.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscreate.1 2021-02-08 16:35:05.991945033 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CREATE "1" "November 2020" "create 1.6" "User Commands" -+.TH TSSCREATE "1" "November 2020" "tsscreate 1.6" "User Commands" - .SH NAME --create \- Runs TPM2 create -+tsscreate \- Runs TPM2 create - .SH DESCRIPTION - create - .PP -diff -ur tss2/utils/man/man1/tsscreateek.1 tss2-new/utils/man/man1/tsscreateek.1 ---- tss2/utils/man/man1/tsscreateek.1 2020-12-22 11:02:31.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscreateek.1 2021-02-08 16:35:17.024800070 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CREATEEK "1" "November 2020" "createek 1.6" "User Commands" -+.TH TSSCREATEEK "1" "November 2020" "tsscreateek 1.6" "User Commands" - .SH NAME --createek \- Runs TPM2 createek -+tsscreateek \- Runs TPM2 createek - .SH DESCRIPTION - createek - .PP -diff -ur tss2/utils/man/man1/tsscreateekcert.1 tss2-new/utils/man/man1/tsscreateekcert.1 ---- tss2/utils/man/man1/tsscreateekcert.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscreateekcert.1 2021-02-08 16:35:31.887604787 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CREATEEKCERT "1" "November 2020" "createekcert 1.6" "User Commands" -+.TH TSSCREATEEKCERT "1" "November 2020" "tsscreateekcert 1.6" "User Commands" - .SH NAME --createekcert \- Runs TPM2 createekcert -+tsscreateekcert \- Runs TPM2 createekcert - .SH SYNOPSIS - .B createekcert - \fI\,-rsa 2048 -cakey cakey.pem -capwd rrrr -v\/\fR -diff -ur tss2/utils/man/man1/tsscreateloaded.1 tss2-new/utils/man/man1/tsscreateloaded.1 ---- tss2/utils/man/man1/tsscreateloaded.1 2020-12-22 11:02:31.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscreateloaded.1 2021-02-08 16:35:43.272455198 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CREATELOADED "1" "November 2020" "createloaded 1.6" "User Commands" -+.TH TSSCREATELOADED "1" "November 2020" "tsscreateloaded 1.6" "User Commands" - .SH NAME --createloaded \- Runs TPM2 createloaded -+tsscreateloaded \- Runs TPM2 createloaded - .SH DESCRIPTION - createloaded - .PP -diff -ur tss2/utils/man/man1/tsscreateprimary.1 tss2-new/utils/man/man1/tsscreateprimary.1 ---- tss2/utils/man/man1/tsscreateprimary.1 2020-12-22 11:02:31.000000000 -0700 -+++ tss2-new/utils/man/man1/tsscreateprimary.1 2021-02-08 16:35:53.966314682 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH CREATEPRIMARY "1" "November 2020" "createprimary 1.6" "User Commands" -+.TH TSSCREATEPRIMARY "1" "November 2020" "tsscreateprimary 1.6" "User Commands" - .SH NAME --createprimary \- Runs TPM2 createprimary -+tsscreateprimary \- Runs TPM2 createprimary - .SH DESCRIPTION - createprimary creates a primary storage key - .PP -diff -ur tss2/utils/man/man1/tssdictionaryattacklockreset.1 tss2-new/utils/man/man1/tssdictionaryattacklockreset.1 ---- tss2/utils/man/man1/tssdictionaryattacklockreset.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssdictionaryattacklockreset.1 2021-02-08 16:36:04.509176147 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH DICTIONARYATTACKLOCKRESET "1" "November 2020" "dictionaryattacklockreset 1.6" "User Commands" -+.TH TSSDICTIONARYATTACKLOCKRESET "1" "November 2020" "tssdictionaryattacklockreset 1.6" "User Commands" - .SH NAME --dictionaryattacklockreset \- Runs TPM2 dictionaryattacklockreset -+tssdictionaryattacklockreset \- Runs TPM2 dictionaryattacklockreset - .SH DESCRIPTION - dictionaryattacklockreset - .PP -diff -ur tss2/utils/man/man1/tssdictionaryattackparameters.1 tss2-new/utils/man/man1/tssdictionaryattackparameters.1 ---- tss2/utils/man/man1/tssdictionaryattackparameters.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssdictionaryattackparameters.1 2021-02-08 16:36:15.669029511 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH DICTIONARYATTACKPARAMETERS "1" "November 2020" "dictionaryattackparameters 1.6" "User Commands" -+.TH TSSDICTIONARYATTACKPARAMETERS "1" "November 2020" "tssdictionaryattackparameters 1.6" "User Commands" - .SH NAME --dictionaryattackparameters \- Runs TPM2 dictionaryattackparameters -+tssdictionaryattackparameters \- Runs TPM2 dictionaryattackparameters - .SH DESCRIPTION - dictionaryattackparameters - .PP -diff -ur tss2/utils/man/man1/tssduplicate.1 tss2-new/utils/man/man1/tssduplicate.1 ---- tss2/utils/man/man1/tssduplicate.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssduplicate.1 2021-02-08 16:36:27.189878133 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH DUPLICATE "1" "November 2020" "duplicate 1.6" "User Commands" -+.TH TSSDUPLICATE "1" "November 2020" "tssduplicate 1.6" "User Commands" - .SH NAME --duplicate \- Runs TPM2 duplicate -+tssduplicate \- Runs TPM2 duplicate - .SH DESCRIPTION - duplicate - .PP -diff -ur tss2/utils/man/man1/tsseccparameters.1 tss2-new/utils/man/man1/tsseccparameters.1 ---- tss2/utils/man/man1/tsseccparameters.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsseccparameters.1 2021-02-08 16:36:40.793699393 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH ECCPARAMETERS "1" "November 2020" "eccparameters 1.6" "User Commands" -+.TH TSSECCPARAMETERS "1" "November 2020" "tsseccparameters 1.6" "User Commands" - .SH NAME --eccparameters \- Runs TPM2 eccparameters -+tsseccparameters \- Runs TPM2 eccparameters - .SH DESCRIPTION - eccparameters - .PP -diff -ur tss2/utils/man/man1/tssecephemeral.1 tss2-new/utils/man/man1/tssecephemeral.1 ---- tss2/utils/man/man1/tssecephemeral.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssecephemeral.1 2021-02-08 16:36:50.372573532 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH ECEPHEMERAL "1" "November 2020" "ecephemeral 1.6" "User Commands" -+.TH TSSECEPHEMERAL "1" "November 2020" "tssecephemeral 1.6" "User Commands" - .SH NAME --ecephemeral \- Runs TPM2 ecephemeral -+tssecephemeral \- Runs TPM2 ecephemeral - .SH DESCRIPTION - ecephmeral - .PP -diff -ur tss2/utils/man/man1/tssencryptdecrypt.1 tss2-new/utils/man/man1/tssencryptdecrypt.1 ---- tss2/utils/man/man1/tssencryptdecrypt.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssencryptdecrypt.1 2021-02-08 16:37:01.006433816 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH ENCRYPTDECRYPT "1" "November 2020" "encryptdecrypt 1.6" "User Commands" -+.TH TSSENCRYPTDECRYPT "1" "November 2020" "tssencryptdecrypt 1.6" "User Commands" - .SH NAME --encryptdecrypt \- Runs TPM2 encryptdecrypt -+tssencryptdecrypt \- Runs TPM2 encryptdecrypt - .SH DESCRIPTION - encryptdecrypt - .PP -diff -ur tss2/utils/man/man1/tsseventextend.1 tss2-new/utils/man/man1/tsseventextend.1 ---- tss2/utils/man/man1/tsseventextend.1 2020-12-22 11:02:31.000000000 -0700 -+++ tss2-new/utils/man/man1/tsseventextend.1 2021-02-08 16:37:11.765292444 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH EVENTEXTEND "1" "November 2020" "eventextend 1.6" "User Commands" -+.TH TSSEVENTEXTEND "1" "November 2020" "tsseventextend 1.6" "User Commands" - .SH NAME --eventextend \- Runs TPM2 eventextend -+tsseventextend \- Runs TPM2 eventextend - .SH SYNOPSIS - .B eventextend - \fI\,-if \/\fR[\fI\,-v\/\fR] -diff -ur tss2/utils/man/man1/tsseventsequencecomplete.1 tss2-new/utils/man/man1/tsseventsequencecomplete.1 ---- tss2/utils/man/man1/tsseventsequencecomplete.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsseventsequencecomplete.1 2021-02-08 16:37:23.641136395 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH EVENTSEQUENCECOMPLETE "1" "November 2020" "eventsequencecomplete 1.6" "User Commands" -+.TH TSSEVENTSEQUENCECOMPLETE "1" "November 2020" "tsseventsequencecomplete 1.6" "User Commands" - .SH NAME --eventsequencecomplete \- Runs TPM2 eventsequencecomplete -+tsseventsequencecomplete \- Runs TPM2 eventsequencecomplete - .SH DESCRIPTION - eventsequencecomplete - .PP -diff -ur tss2/utils/man/man1/tssevictcontrol.1 tss2-new/utils/man/man1/tssevictcontrol.1 ---- tss2/utils/man/man1/tssevictcontrol.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssevictcontrol.1 2021-02-08 16:37:33.136011637 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH EVICTCONTROL "1" "November 2020" "evictcontrol 1.6" "User Commands" -+.TH TSSEVICTCONTROL "1" "November 2020" "tssevictcontrol 1.6" "User Commands" - .SH NAME --evictcontrol \- Runs TPM2 evictcontrol -+tssevictcontrol \- Runs TPM2 evictcontrol - .SH DESCRIPTION - evictcontrol - .PP -diff -ur tss2/utils/man/man1/tssflushcontext.1 tss2-new/utils/man/man1/tssflushcontext.1 ---- tss2/utils/man/man1/tssflushcontext.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssflushcontext.1 2021-02-08 16:37:43.319877829 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH FLUSHCONTEXT "1" "November 2020" "flushcontext 1.6" "User Commands" -+.TH TSSFLUSHCONTEXT "1" "November 2020" "tssflushcontext 1.6" "User Commands" - .SH NAME --flushcontext \- Runs TPM2 flushcontext -+tssflushcontext \- Runs TPM2 flushcontext - .SH DESCRIPTION - flushcontext - .PP -diff -ur tss2/utils/man/man1/tssgetcapability.1 tss2-new/utils/man/man1/tssgetcapability.1 ---- tss2/utils/man/man1/tssgetcapability.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssgetcapability.1 2021-02-08 16:37:53.430744980 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH GETCAPABILITY "1" "November 2020" "getcapability 1.6" "User Commands" -+.TH TSSGETCAPABILITY "1" "November 2020" "tssgetcapability 1.6" "User Commands" - .SH NAME --getcapability \- Runs TPM2 getcapability -+tssgetcapability \- Runs TPM2 getcapability - .SH DESCRIPTION - getcapability - .PP -diff -ur tss2/utils/man/man1/tssgetcommandauditdigest.1 tss2-new/utils/man/man1/tssgetcommandauditdigest.1 ---- tss2/utils/man/man1/tssgetcommandauditdigest.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssgetcommandauditdigest.1 2021-02-08 16:38:03.697610080 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH GETCOMMANDAUDITDIGEST "1" "November 2020" "getcommandauditdigest 1.6" "User Commands" -+.TH TSSGETCOMMANDAUDITDIGEST "1" "November 2020" "tssgetcommandauditdigest 1.6" "User Commands" - .SH NAME --getcommandauditdigest \- Runs TPM2 getcommandauditdigest -+tssgetcommandauditdigest \- Runs TPM2 getcommandauditdigest - .SH DESCRIPTION - getcommandauditdigest - .PP -diff -ur tss2/utils/man/man1/tssgetcryptolibrary.1 tss2-new/utils/man/man1/tssgetcryptolibrary.1 ---- tss2/utils/man/man1/tssgetcryptolibrary.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssgetcryptolibrary.1 2021-02-08 16:38:13.285484106 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH GETCRYPTOLIBRARY "1" "November 2020" "getcryptolibrary 1.6" "User Commands" -+.TH TSSGETCRYPTOLIBRARY "1" "November 2020" "tssgetcryptolibrary 1.6" "User Commands" - .SH NAME --getcryptolibrary \- Runs TPM2 getcryptolibrary -+tssgetcryptolibrary \- Runs TPM2 getcryptolibrary - .SH DESCRIPTION - getcryptolibrary - .PP -diff -ur tss2/utils/man/man1/tssgetrandom.1 tss2-new/utils/man/man1/tssgetrandom.1 ---- tss2/utils/man/man1/tssgetrandom.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssgetrandom.1 2021-02-08 16:38:28.289286407 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH GETRANDOM "1" "November 2020" "getrandom 1.6" "User Commands" -+.TH TSSGETRANDOM "1" "November 2020" "tssgetrandom 1.6" "User Commands" - .SH NAME --getrandom \- Runs TPM2 getrandom -+tssgetrandom \- Runs TPM2 getrandom - .SH DESCRIPTION - getrandom - .PP -diff -ur tss2/utils/man/man1/tssgetsessionauditdigest.1 tss2-new/utils/man/man1/tssgetsessionauditdigest.1 ---- tss2/utils/man/man1/tssgetsessionauditdigest.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssgetsessionauditdigest.1 2021-02-08 16:38:49.060012570 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH GETSESSIONAUDITDIGEST "1" "November 2020" "getsessionauditdigest 1.6" "User Commands" -+.TH TSSGETSESSIONAUDITDIGEST "1" "November 2020" "tssgetsessionauditdigest 1.6" "User Commands" - .SH NAME --getsessionauditdigest \- Runs TPM2 getsessionauditdigest -+tssgetsessionauditdigest \- Runs TPM2 getsessionauditdigest - .SH DESCRIPTION - getsessionauditdigest - .PP -diff -ur tss2/utils/man/man1/tssgettestresult.1 tss2-new/utils/man/man1/tssgettestresult.1 ---- tss2/utils/man/man1/tssgettestresult.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssgettestresult.1 2021-02-08 16:39:03.122827172 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH GETTESTRESULT "1" "November 2020" "gettestresult 1.6" "User Commands" -+.TH TSSGETTESTRESULT "1" "November 2020" "tssgettestresult 1.6" "User Commands" - .SH NAME --gettestresult \- Runs TPM2 gettestresult -+tssgettestresult \- Runs TPM2 gettestresult - .SH DESCRIPTION - gettestresult - .PP -diff -ur tss2/utils/man/man1/tssgettime.1 tss2-new/utils/man/man1/tssgettime.1 ---- tss2/utils/man/man1/tssgettime.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssgettime.1 2021-02-08 16:39:14.638675349 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH GETTIME "1" "November 2020" "gettime 1.6" "User Commands" -+.TH TSSGETTIME "1" "November 2020" "tssgettime 1.6" "User Commands" - .SH NAME --gettime \- Runs TPM2 gettime -+tssgettime \- Runs TPM2 gettime - .SH DESCRIPTION - gettime - .PP -diff -ur tss2/utils/man/man1/tsshash.1 tss2-new/utils/man/man1/tsshash.1 ---- tss2/utils/man/man1/tsshash.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsshash.1 2021-02-08 16:39:24.577544317 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH HASH "1" "November 2020" "hash 1.6" "User Commands" -+.TH TSSHASH "1" "November 2020" "tsshash 1.6" "User Commands" - .SH NAME --hash \- Runs TPM2 hash -+tsshash \- Runs TPM2 hash - .SH DESCRIPTION - hash - .PP -diff -ur tss2/utils/man/man1/tsshashsequencestart.1 tss2-new/utils/man/man1/tsshashsequencestart.1 ---- tss2/utils/man/man1/tsshashsequencestart.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsshashsequencestart.1 2021-02-08 16:39:40.157338918 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH HASHSEQUENCESTART "1" "November 2020" "hashsequencestart 1.6" "User Commands" -+.TH TSSHASHSEQUENCESTART "1" "November 2020" "tsshashsequencestart 1.6" "User Commands" - .SH NAME --hashsequencestart \- Runs TPM2 hashsequencestart -+tsshashsequencestart \- Runs TPM2 hashsequencestart - .SH DESCRIPTION - hashsequencestart - .PP -diff -ur tss2/utils/man/man1/tsshierarchychangeauth.1 tss2-new/utils/man/man1/tsshierarchychangeauth.1 ---- tss2/utils/man/man1/tsshierarchychangeauth.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsshierarchychangeauth.1 2021-02-08 16:39:52.844171658 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH HIERARCHYCHANGEAUTH "1" "November 2020" "hierarchychangeauth 1.6" "User Commands" -+.TH TSSHIERARCHYCHANGEAUTH "1" "November 2020" "tsshierarchychangeauth 1.6" "User Commands" - .SH NAME --hierarchychangeauth \- Runs TPM2 hierarchychangeauth -+tsshierarchychangeauth \- Runs TPM2 hierarchychangeauth - .SH DESCRIPTION - hierarchychangeauth - .PP -diff -ur tss2/utils/man/man1/tsshierarchycontrol.1 tss2-new/utils/man/man1/tsshierarchycontrol.1 ---- tss2/utils/man/man1/tsshierarchycontrol.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsshierarchycontrol.1 2021-02-08 16:40:06.439992415 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH HIERARCHYCONTROL "1" "November 2020" "hierarchycontrol 1.6" "User Commands" -+.TH TSSHIERARCHYCONTROL "1" "November 2020" "tsshierarchycontrol 1.6" "User Commands" - .SH NAME --hierarchycontrol \- Runs TPM2 hierarchycontrol -+tsshierarchycontrol \- Runs TPM2 hierarchycontrol - .SH DESCRIPTION - hierarchycontrol - .PP -diff -ur tss2/utils/man/man1/tsshmac.1 tss2-new/utils/man/man1/tsshmac.1 ---- tss2/utils/man/man1/tsshmac.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsshmac.1 2021-02-08 16:40:31.313664487 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH HMAC "1" "November 2020" "hmac 1.6" "User Commands" -+.TH TSSHMAC "1" "November 2020" "tsshmac 1.6" "User Commands" - .SH NAME --hmac \- Runs TPM2 hmac -+tsshmac \- Runs TPM2 hmac - .SH DESCRIPTION - hmac - .PP -diff -ur tss2/utils/man/man1/tsshmacstart.1 tss2-new/utils/man/man1/tsshmacstart.1 ---- tss2/utils/man/man1/tsshmacstart.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsshmacstart.1 2021-02-08 16:40:41.213533970 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH HMACSTART "1" "November 2020" "hmacstart 1.6" "User Commands" -+.TH TSSHMACSTART "1" "November 2020" "tsshmacstart 1.6" "User Commands" - .SH NAME --hmacstart \- Runs TPM2 hmacstart -+tsshmacstart \- Runs TPM2 hmacstart - .SH DESCRIPTION - hmacstart - .PP -diff -ur tss2/utils/man/man1/tssimport.1 tss2-new/utils/man/man1/tssimport.1 ---- tss2/utils/man/man1/tssimport.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssimport.1 2021-02-08 16:41:03.758236747 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH IMPORT "1" "November 2020" "import 1.6" "User Commands" -+.TH TSSIMPORT "1" "November 2020" "tssimport 1.6" "User Commands" - .SH NAME --import \- Runs TPM2 import -+tssimport \- Runs TPM2 import - .SH DESCRIPTION - import - .PP -diff -ur tss2/utils/man/man1/tssimportpem.1 tss2-new/utils/man/man1/tssimportpem.1 ---- tss2/utils/man/man1/tssimportpem.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssimportpem.1 2021-02-08 16:41:31.710868228 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH IMPORTPEM "1" "November 2020" "importpem 1.6" "User Commands" -+.TH TSSIMPORTPEM "1" "November 2020" "tssimportpem 1.6" "User Commands" - .SH NAME --importpem \- Runs TPM2 importpem -+tssimportpem \- Runs TPM2 importpem - .SH DESCRIPTION - importpem - .PP -diff -ur tss2/utils/man/man1/tssload.1 tss2-new/utils/man/man1/tssload.1 ---- tss2/utils/man/man1/tssload.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssload.1 2021-02-08 16:41:41.305741732 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH LOAD "1" "November 2020" "load 1.6" "User Commands" -+.TH TSSLOAD "1" "November 2020" "tssload 1.6" "User Commands" - .SH NAME --load \- Runs TPM2 load -+tssload \- Runs TPM2 load - .SH DESCRIPTION - load - .PP -diff -ur tss2/utils/man/man1/tssloadexternal.1 tss2-new/utils/man/man1/tssloadexternal.1 ---- tss2/utils/man/man1/tssloadexternal.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssloadexternal.1 2021-02-08 16:41:50.850615895 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH LOADEXTERNAL "1" "November 2020" "loadexternal 1.6" "User Commands" -+.TH TSSLOADEXTERNAL "1" "November 2020" "tssloadexternal 1.6" "User Commands" - .SH NAME --loadexternal \- Runs TPM2 loadexternal -+tssloadexternal \- Runs TPM2 loadexternal - .SH DESCRIPTION - loadexternal - .PP -diff -ur tss2/utils/man/man1/tssmakecredential.1 tss2-new/utils/man/man1/tssmakecredential.1 ---- tss2/utils/man/man1/tssmakecredential.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssmakecredential.1 2021-02-08 16:42:03.983442755 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH MAKECREDENTIAL "1" "November 2020" "makecredential 1.6" "User Commands" -+.TH TSSMAKECREDENTIAL "1" "November 2020" "tssmakecredential 1.6" "User Commands" - .SH NAME --makecredential \- Runs TPM2 makecredential -+tssmakecredential \- Runs TPM2 makecredential - .SH DESCRIPTION - makecredential - .PP -diff -ur tss2/utils/man/man1/tssntc2getconfig.1 tss2-new/utils/man/man1/tssntc2getconfig.1 ---- tss2/utils/man/man1/tssntc2getconfig.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssntc2getconfig.1 2021-02-08 16:42:13.549316642 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NTC2GETCONFIG "1" "November 2020" "ntc2getconfig 1.6" "User Commands" -+.TH TSSNTC2GETCONFIG "1" "November 2020" "tssntc2getconfig 1.6" "User Commands" - .SH NAME --ntc2getconfig \- Runs TPM2 ntc2getconfig -+tssntc2getconfig \- Runs TPM2 ntc2getconfig - .SH DESCRIPTION - ntc2getconfig - .PP -diff -ur tss2/utils/man/man1/tssntc2lockconfig.1 tss2-new/utils/man/man1/tssntc2lockconfig.1 ---- tss2/utils/man/man1/tssntc2lockconfig.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssntc2lockconfig.1 2021-02-08 16:42:24.331174497 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NTC2LOCKCONFIG "1" "November 2020" "ntc2lockconfig 1.6" "User Commands" -+.TH TSSNTC2LOCKCONFIG "1" "November 2020" "tssntc2lockconfig 1.6" "User Commands" - .SH NAME --ntc2lockconfig \- Runs TPM2 ntc2lockconfig -+tssntc2lockconfig \- Runs TPM2 ntc2lockconfig - .SH DESCRIPTION - ntc2lockpreconfig - .PP -diff -ur tss2/utils/man/man1/tssntc2preconfig.1 tss2-new/utils/man/man1/tssntc2preconfig.1 ---- tss2/utils/man/man1/tssntc2preconfig.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssntc2preconfig.1 2021-02-08 16:42:46.105887307 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NTC2PRECONFIG "1" "November 2020" "ntc2preconfig 1.6" "User Commands" -+.TH TSSNTC2PRECONFIG "1" "November 2020" "tssntc2preconfig 1.6" "User Commands" - .SH NAME --ntc2preconfig \- Runs TPM2 ntc2preconfig -+tssntc2preconfig \- Runs TPM2 ntc2preconfig - .SH DESCRIPTION - ntc2preconfig - .PP -diff -ur tss2/utils/man/man1/tssnvcertify.1 tss2-new/utils/man/man1/tssnvcertify.1 ---- tss2/utils/man/man1/tssnvcertify.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvcertify.1 2021-02-08 16:44:50.874241342 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVCERTIFY "1" "November 2020" "nvcertify 1.6" "User Commands" -+.TH TSSNVCERTIFY "1" "November 2020" "tssnvcertify 1.6" "User Commands" - .SH NAME --nvcertify \- Runs TPM2 nvcertify -+tssnvcertify \- Runs TPM2 nvcertify - .SH DESCRIPTION - nvcertify - .PP -diff -ur tss2/utils/man/man1/tssnvchangeauth.1 tss2-new/utils/man/man1/tssnvchangeauth.1 ---- tss2/utils/man/man1/tssnvchangeauth.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvchangeauth.1 2021-02-08 16:45:00.287117165 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVCHANGEAUTH "1" "November 2020" "nvchangeauth 1.6" "User Commands" -+.TH TSSNVCHANGEAUTH "1" "November 2020" "tssnvchangeauth 1.6" "User Commands" - .SH NAME --nvchangeauth \- Runs TPM2 nvchangeauth -+tssnvchangeauth \- Runs TPM2 nvchangeauth - .SH DESCRIPTION - nvchangeauth - .PP -diff -ur tss2/utils/man/man1/tssnvdefinespace.1 tss2-new/utils/man/man1/tssnvdefinespace.1 ---- tss2/utils/man/man1/tssnvdefinespace.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvdefinespace.1 2021-02-08 16:45:09.956989598 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVDEFINESPACE "1" "November 2020" "nvdefinespace 1.6" "User Commands" -+.TH TSSNVDEFINESPACE "1" "November 2020" "tssnvdefinespace 1.6" "User Commands" - .SH NAME --nvdefinespace \- Runs TPM2 nvdefinespace -+tssnvdefinespace \- Runs TPM2 nvdefinespace - .SH DESCRIPTION - nvdefinespace - .PP -diff -ur tss2/utils/man/man1/tssnvextend.1 tss2-new/utils/man/man1/tssnvextend.1 ---- tss2/utils/man/man1/tssnvextend.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvextend.1 2021-02-08 16:45:18.993870380 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVEXTEND "1" "November 2020" "nvextend 1.6" "User Commands" -+.TH TSSNVEXTEND "1" "November 2020" "tssnvextend 1.6" "User Commands" - .SH NAME --nvextend \- Runs TPM2 nvextend -+tssnvextend \- Runs TPM2 nvextend - .SH DESCRIPTION - nvextend - .PP -diff -ur tss2/utils/man/man1/tssnvglobalwritelock.1 tss2-new/utils/man/man1/tssnvglobalwritelock.1 ---- tss2/utils/man/man1/tssnvglobalwritelock.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvglobalwritelock.1 2021-02-08 16:45:29.344733830 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVGLOBALWRITELOCK "1" "November 2020" "nvglobalwritelock 1.6" "User Commands" -+.TH TSSNVGLOBALWRITELOCK "1" "November 2020" "tssnvglobalwritelock 1.6" "User Commands" - .SH NAME --nvglobalwritelock \- Runs TPM2 nvglobalwritelock -+tssnvglobalwritelock \- Runs TPM2 nvglobalwritelock - .SH DESCRIPTION - nvglobalwritelock - .PP -diff -ur tss2/utils/man/man1/tssnvincrement.1 tss2-new/utils/man/man1/tssnvincrement.1 ---- tss2/utils/man/man1/tssnvincrement.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvincrement.1 2021-02-08 16:45:40.256589878 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVINCREMENT "1" "November 2020" "nvincrement 1.6" "User Commands" -+.TH TSSNVINCREMENT "1" "November 2020" "tssnvincrement 1.6" "User Commands" - .SH NAME --nvincrement \- Runs TPM2 nvincrement -+tssnvincrement \- Runs TPM2 nvincrement - .SH DESCRIPTION - nvincrement - .PP -diff -ur tss2/utils/man/man1/tssnvread.1 tss2-new/utils/man/man1/tssnvread.1 ---- tss2/utils/man/man1/tssnvread.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvread.1 2021-02-08 16:45:49.323470266 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVREAD "1" "November 2020" "nvread 1.6" "User Commands" -+.TH TSSNVREAD "1" "November 2020" "tssnvread 1.6" "User Commands" - .SH NAME --nvread \- Runs TPM2 nvread -+tssnvread \- Runs TPM2 nvread - .SH DESCRIPTION - nvread - .PP -diff -ur tss2/utils/man/man1/tssnvreadlock.1 tss2-new/utils/man/man1/tssnvreadlock.1 ---- tss2/utils/man/man1/tssnvreadlock.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvreadlock.1 2021-02-08 16:45:59.239339456 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVREADLOCK "1" "November 2020" "nvreadlock 1.6" "User Commands" -+.TH TSSNVREADLOCK "1" "November 2020" "tssnvreadlock 1.6" "User Commands" - .SH NAME --nvreadlock \- Runs TPM2 nvreadlock -+tssnvreadlock \- Runs TPM2 nvreadlock - .SH DESCRIPTION - nvreadlock - .PP -diff -ur tss2/utils/man/man1/tssnvreadpublic.1 tss2-new/utils/man/man1/tssnvreadpublic.1 ---- tss2/utils/man/man1/tssnvreadpublic.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvreadpublic.1 2021-02-08 16:46:08.776213644 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVREADPUBLIC "1" "November 2020" "nvreadpublic 1.6" "User Commands" -+.TH TSSNVREADPUBLIC "1" "November 2020" "tssnvreadpublic 1.6" "User Commands" - .SH NAME --nvreadpublic \- Runs TPM2 nvreadpublic -+tssnvreadpublic \- Runs TPM2 nvreadpublic - .SH DESCRIPTION - nvreadpublic - .PP -diff -ur tss2/utils/man/man1/tssnvsetbits.1 tss2-new/utils/man/man1/tssnvsetbits.1 ---- tss2/utils/man/man1/tssnvsetbits.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvsetbits.1 2021-02-08 16:46:19.200076131 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVSETBITS "1" "November 2020" "nvsetbits 1.6" "User Commands" -+.TH TSSNVSETBITS "1" "November 2020" "tssnvsetbits 1.6" "User Commands" - .SH NAME --nvsetbits \- Runs TPM2 nvsetbits -+tssnvsetbits \- Runs TPM2 nvsetbits - .SH DESCRIPTION - nvsetbits - .PP -diff -ur tss2/utils/man/man1/tssnvundefinespace.1 tss2-new/utils/man/man1/tssnvundefinespace.1 ---- tss2/utils/man/man1/tssnvundefinespace.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvundefinespace.1 2021-02-08 16:46:29.029946453 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVUNDEFINESPACE "1" "November 2020" "nvundefinespace 1.6" "User Commands" -+.TH TSSNVUNDEFINESPACE "1" "November 2020" "tssnvundefinespace 1.6" "User Commands" - .SH NAME --nvundefinespace \- Runs TPM2 nvundefinespace -+tssnvundefinespace \- Runs TPM2 nvundefinespace - .SH DESCRIPTION - nvundefinespace - .PP -diff -ur tss2/utils/man/man1/tssnvundefinespacespecial.1 tss2-new/utils/man/man1/tssnvundefinespacespecial.1 ---- tss2/utils/man/man1/tssnvundefinespacespecial.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvundefinespacespecial.1 2021-02-08 16:46:38.774817896 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVUNDEFINESPACESPECIAL "1" "November 2020" "nvundefinespacespecial 1.6" "User Commands" -+.TH TSSNVUNDEFINESPACESPECIAL "1" "November 2020" "tssnvundefinespacespecial 1.6" "User Commands" - .SH NAME --nvundefinespacespecial \- Runs TPM2 nvundefinespacespecial -+tssnvundefinespacespecial \- Runs TPM2 nvundefinespacespecial - .SH DESCRIPTION - nvundefinespacespecial - .PP -diff -ur tss2/utils/man/man1/tssnvwrite.1 tss2-new/utils/man/man1/tssnvwrite.1 ---- tss2/utils/man/man1/tssnvwrite.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvwrite.1 2021-02-08 16:46:49.444677136 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVWRITE "1" "November 2020" "nvwrite 1.6" "User Commands" -+.TH TSSNVWRITE "1" "November 2020" "tssnvwrite 1.6" "User Commands" - .SH NAME --nvwrite \- Runs TPM2 nvwrite -+tssnvwrite \- Runs TPM2 nvwrite - .SH DESCRIPTION - nvwrite - .PP -diff -ur tss2/utils/man/man1/tssnvwritelock.1 tss2-new/utils/man/man1/tssnvwritelock.1 ---- tss2/utils/man/man1/tssnvwritelock.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssnvwritelock.1 2021-02-08 16:46:59.163549415 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH NVWRITELOCK "1" "November 2020" "nvwritelock 1.6" "User Commands" -+.TH TSSNVWRITELOCK "1" "November 2020" "tssnvwritelock 1.6" "User Commands" - .SH NAME --nvwritelock \- Runs TPM2 nvwritelock -+tssnvwritelock \- Runs TPM2 nvwritelock - .SH DESCRIPTION - nvwritelock - .PP -diff -ur tss2/utils/man/man1/tssobjectchangeauth.1 tss2-new/utils/man/man1/tssobjectchangeauth.1 ---- tss2/utils/man/man1/tssobjectchangeauth.1 2020-12-22 11:32:07.000000000 -0700 -+++ tss2-new/utils/man/man1/tssobjectchangeauth.1 2021-02-08 16:47:10.810396739 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH OBJECTCHANGEAUTH "1" "December 2020" "objectchangeauth 1.6" "User Commands" -+.TH TSSOBJECTCHANGEAUTH "1" "December 2020" "tssobjectchangeauth 1.6" "User Commands" - .SH NAME --objectchangeauth \- Runs TPM2 objectchangeauth -+tssobjectchangeauth \- Runs TPM2 objectchangeauth - .SH DESCRIPTION - objectchangeauth - .PP -diff -ur tss2/utils/man/man1/tsspcrallocate.1 tss2-new/utils/man/man1/tsspcrallocate.1 ---- tss2/utils/man/man1/tsspcrallocate.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspcrallocate.1 2021-02-08 16:47:19.894277654 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH PCRALLOCATE "1" "November 2020" "pcrallocate 1.6" "User Commands" -+.TH TSSPCRALLOCATE "1" "November 2020" "tsspcrallocate 1.6" "User Commands" - .SH NAME --pcrallocate \- Runs TPM2 pcrallocate -+tsspcrallocate \- Runs TPM2 pcrallocate - .SH DESCRIPTION - pcrallocate - .PP -diff -ur tss2/utils/man/man1/tsspcrevent.1 tss2-new/utils/man/man1/tsspcrevent.1 ---- tss2/utils/man/man1/tsspcrevent.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspcrevent.1 2021-02-08 16:47:29.626150078 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH PCREVENT "1" "November 2020" "pcrevent 1.6" "User Commands" -+.TH TSSPCREVENT "1" "November 2020" "tsspcrevent 1.6" "User Commands" - .SH NAME --pcrevent \- Runs TPM2 pcrevent -+tsspcrevent \- Runs TPM2 pcrevent - .SH DESCRIPTION - pcrevent - .PP -diff -ur tss2/utils/man/man1/tsspcrextend.1 tss2-new/utils/man/man1/tsspcrextend.1 ---- tss2/utils/man/man1/tsspcrextend.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspcrextend.1 2021-02-08 16:47:38.970027588 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH PCREXTEND "1" "November 2020" "pcrextend 1.6" "User Commands" -+.TH TSSPCREXTEND "1" "November 2020" "tsspcrextend 1.6" "User Commands" - .SH NAME --pcrextend \- Runs TPM2 pcrextend -+tsspcrextend \- Runs TPM2 pcrextend - .SH DESCRIPTION - pcrextend - .PP -diff -ur tss2/utils/man/man1/tsspcrread.1 tss2-new/utils/man/man1/tsspcrread.1 ---- tss2/utils/man/man1/tsspcrread.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspcrread.1 2021-02-08 16:47:47.868910935 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH PCRREAD "1" "November 2020" "pcrread 1.6" "User Commands" -+.TH TSSPCRREAD "1" "November 2020" "tsspcrread 1.6" "User Commands" - .SH NAME --pcrread \- Runs TPM2 pcrread -+tsspcrread \- Runs TPM2 pcrread - .SH DESCRIPTION - pcrread - .PP -diff -ur tss2/utils/man/man1/tsspcrreset.1 tss2-new/utils/man/man1/tsspcrreset.1 ---- tss2/utils/man/man1/tsspcrreset.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspcrreset.1 2021-02-08 16:47:56.908792432 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH PCRRESET "1" "November 2020" "pcrreset 1.6" "User Commands" -+.TH TSSPCRRESET "1" "November 2020" "tsspcrreset 1.6" "User Commands" - .SH NAME --pcrreset \- Runs TPM2 pcrreset -+tsspcrreset \- Runs TPM2 pcrreset - .SH DESCRIPTION - pcrreset - .PP -diff -ur tss2/utils/man/man1/tsspolicyauthorize.1 tss2-new/utils/man/man1/tsspolicyauthorize.1 ---- tss2/utils/man/man1/tsspolicyauthorize.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicyauthorize.1 2021-02-08 16:48:06.406667925 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYAUTHORIZE "1" "November 2020" "policyauthorize 1.6" "User Commands" -+.TH TSSPOLICYAUTHORIZE "1" "November 2020" "tsspolicyauthorize 1.6" "User Commands" - .SH NAME --policyauthorize \- Runs TPM2 policyauthorize -+tsspolicyauthorize \- Runs TPM2 policyauthorize - .SH DESCRIPTION - policyauthorize - .PP -diff -ur tss2/utils/man/man1/tsspolicyauthorizenv.1 tss2-new/utils/man/man1/tsspolicyauthorizenv.1 ---- tss2/utils/man/man1/tsspolicyauthorizenv.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicyauthorizenv.1 2021-02-08 16:48:15.747545477 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYAUTHORIZENV "1" "November 2020" "policyauthorizenv 1.6" "User Commands" -+.TH TSSPOLICYAUTHORIZENV "1" "November 2020" "tsspolicyauthorizenv 1.6" "User Commands" - .SH NAME --policyauthorizenv \- Runs TPM2 policyauthorizenv -+tsspolicyauthorizenv \- Runs TPM2 policyauthorizenv - .SH DESCRIPTION - policyauthorizenv - .PP -diff -ur tss2/utils/man/man1/tsspolicyauthvalue.1 tss2-new/utils/man/man1/tsspolicyauthvalue.1 ---- tss2/utils/man/man1/tsspolicyauthvalue.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicyauthvalue.1 2021-02-08 16:48:25.992411184 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYAUTHVALUE "1" "November 2020" "policyauthvalue 1.6" "User Commands" -+.TH TSSPOLICYAUTHVALUE "1" "November 2020" "tsspolicyauthvalue 1.6" "User Commands" - .SH NAME --policyauthvalue \- Runs TPM2 policyauthvalue -+tsspolicyauthvalue \- Runs TPM2 policyauthvalue - .SH DESCRIPTION - policyauthvalue - .PP -diff -ur tss2/utils/man/man1/tsspolicycommandcode.1 tss2-new/utils/man/man1/tsspolicycommandcode.1 ---- tss2/utils/man/man1/tsspolicycommandcode.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicycommandcode.1 2021-02-08 16:48:35.707283825 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYCOMMANDCODE "1" "November 2020" "policycommandcode 1.6" "User Commands" -+.TH TSSPOLICYCOMMANDCODE "1" "November 2020" "tsspolicycommandcode 1.6" "User Commands" - .SH NAME --policycommandcode \- Runs TPM2 policycommandcode -+tsspolicycommandcode \- Runs TPM2 policycommandcode - .SH DESCRIPTION - policycommandcode - .PP -diff -ur tss2/utils/man/man1/tsspolicycountertimer.1 tss2-new/utils/man/man1/tsspolicycountertimer.1 ---- tss2/utils/man/man1/tsspolicycountertimer.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicycountertimer.1 2021-02-08 16:48:45.963149380 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYCOUNTERTIMER "1" "November 2020" "policycountertimer 1.6" "User Commands" -+.TH TSSPOLICYCOUNTERTIMER "1" "November 2020" "tsspolicycountertimer 1.6" "User Commands" - .SH NAME --policycountertimer \- Runs TPM2 policycountertimer -+tsspolicycountertimer \- Runs TPM2 policycountertimer - .SH DESCRIPTION - policycountertimer - .PP -diff -ur tss2/utils/man/man1/tsspolicycphash.1 tss2-new/utils/man/man1/tsspolicycphash.1 ---- tss2/utils/man/man1/tsspolicycphash.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicycphash.1 2021-02-08 16:48:57.465998590 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYCPHASH "1" "November 2020" "policycphash 1.6" "User Commands" -+.TH TSSPOLICYCPHASH "1" "November 2020" "tsspolicycphash 1.6" "User Commands" - .SH NAME --policycphash \- Runs TPM2 policycphash -+tsspolicycphash \- Runs TPM2 policycphash - .SH DESCRIPTION - policycphash - .PP -diff -ur tss2/utils/man/man1/tsspolicyduplicationselect.1 tss2-new/utils/man/man1/tsspolicyduplicationselect.1 ---- tss2/utils/man/man1/tsspolicyduplicationselect.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicyduplicationselect.1 2021-02-08 16:49:07.424868038 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYDUPLICATIONSELECT "1" "November 2020" "policyduplicationselect 1.6" "User Commands" -+.TH TSSPOLICYDUPLICATIONSELECT "1" "November 2020" "tsspolicyduplicationselect 1.6" "User Commands" - .SH NAME --policyduplicationselect \- Runs TPM2 policyduplicationselect -+tsspolicyduplicationselect \- Runs TPM2 policyduplicationselect - .SH DESCRIPTION - policyduplicationselect - .PP -diff -ur tss2/utils/man/man1/tsspolicygetdigest.1 tss2-new/utils/man/man1/tsspolicygetdigest.1 ---- tss2/utils/man/man1/tsspolicygetdigest.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicygetdigest.1 2021-02-08 16:49:16.843744567 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYGETDIGEST "1" "November 2020" "policygetdigest 1.6" "User Commands" -+.TH TSSPOLICYGETDIGEST "1" "November 2020" "tsspolicygetdigest 1.6" "User Commands" - .SH NAME --policygetdigest \- Runs TPM2 policygetdigest -+tsspolicygetdigest \- Runs TPM2 policygetdigest - .SH DESCRIPTION - policygetdigest - .PP -diff -ur tss2/utils/man/man1/tsspolicymaker.1 tss2-new/utils/man/man1/tsspolicymaker.1 ---- tss2/utils/man/man1/tsspolicymaker.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicymaker.1 2021-02-08 16:49:26.295620665 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYMAKER "1" "November 2020" "policymaker 1.6" "User Commands" -+.TH TSSPOLICYMAKER "1" "November 2020" "tsspolicymaker 1.6" "User Commands" - .SH NAME --policymaker \- Runs TPM2 policymaker -+tsspolicymaker \- Runs TPM2 policymaker - .SH DESCRIPTION - policymaker - .TP -diff -ur tss2/utils/man/man1/tsspolicymakerpcr.1 tss2-new/utils/man/man1/tsspolicymakerpcr.1 ---- tss2/utils/man/man1/tsspolicymakerpcr.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicymakerpcr.1 2021-02-08 16:49:36.000493447 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYMAKERPCR "1" "November 2020" "policymakerpcr 1.6" "User Commands" -+.TH TSSPOLICYMAKERPCR "1" "November 2020" "tsspolicymakerpcr 1.6" "User Commands" - .SH NAME --policymakerpcr \- Runs TPM2 policymakerpcr -+tsspolicymakerpcr \- Runs TPM2 policymakerpcr - .SH DESCRIPTION - policymakerpcr - .PP -diff -ur tss2/utils/man/man1/tsspolicynamehash.1 tss2-new/utils/man/man1/tsspolicynamehash.1 ---- tss2/utils/man/man1/tsspolicynamehash.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicynamehash.1 2021-02-08 16:49:45.570367991 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYNAMEHASH "1" "November 2020" "policynamehash 1.6" "User Commands" -+.TH TSSPOLICYNAMEHASH "1" "November 2020" "tsspolicynamehash 1.6" "User Commands" - .SH NAME --policynamehash \- Runs TPM2 policynamehash -+tsspolicynamehash \- Runs TPM2 policynamehash - .SH DESCRIPTION - policynamehash - .PP -diff -ur tss2/utils/man/man1/tsspolicynv.1 tss2-new/utils/man/man1/tsspolicynv.1 ---- tss2/utils/man/man1/tsspolicynv.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicynv.1 2021-02-08 16:49:54.294253622 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYNV "1" "November 2020" "policynv 1.6" "User Commands" -+.TH TSSPOLICYNV "1" "November 2020" "tsspolicynv 1.6" "User Commands" - .SH NAME --policynv \- Runs TPM2 policynv -+tsspolicynv \- Runs TPM2 policynv - .SH DESCRIPTION - policynv - .PP -diff -ur tss2/utils/man/man1/tsspolicynvwritten.1 tss2-new/utils/man/man1/tsspolicynvwritten.1 ---- tss2/utils/man/man1/tsspolicynvwritten.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicynvwritten.1 2021-02-08 16:50:04.221123489 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYNVWRITTEN "1" "November 2020" "policynvwritten 1.6" "User Commands" -+.TH TSSPOLICYNVWRITTEN "1" "November 2020" "tsspolicynvwritten 1.6" "User Commands" - .SH NAME --policynvwritten \- Runs TPM2 policynvwritten -+tsspolicynvwritten \- Runs TPM2 policynvwritten - .SH DESCRIPTION - policynvwritten - .PP -diff -ur tss2/utils/man/man1/tsspolicyor.1 tss2-new/utils/man/man1/tsspolicyor.1 ---- tss2/utils/man/man1/tsspolicyor.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicyor.1 2021-02-08 16:50:14.800984798 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYOR "1" "November 2020" "policyor 1.6" "User Commands" -+.TH TSSPOLICYOR "1" "November 2020" "tsspolicyor 1.6" "User Commands" - .SH NAME --policyor \- Runs TPM2 policyor -+tsspolicyor \- Runs TPM2 policyor - .SH DESCRIPTION - policyor - .PP -diff -ur tss2/utils/man/man1/tsspolicypassword.1 tss2-new/utils/man/man1/tsspolicypassword.1 ---- tss2/utils/man/man1/tsspolicypassword.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicypassword.1 2021-02-08 16:50:25.403845804 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYPASSWORD "1" "November 2020" "policypassword 1.6" "User Commands" -+.TH TSSPOLICYPASSWORD "1" "November 2020" "tsspolicypassword 1.6" "User Commands" - .SH NAME --policypassword \- Runs TPM2 policypassword -+tsspolicypassword \- Runs TPM2 policypassword - .SH DESCRIPTION - policypassword - .PP -diff -ur tss2/utils/man/man1/tsspolicypcr.1 tss2-new/utils/man/man1/tsspolicypcr.1 ---- tss2/utils/man/man1/tsspolicypcr.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicypcr.1 2021-02-08 16:50:34.575725570 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYPCR "1" "November 2020" "policypcr 1.6" "User Commands" -+.TH TSSPOLICYPCR "1" "November 2020" "tsspolicypcr 1.6" "User Commands" - .SH NAME --policypcr \- Runs TPM2 policypcr -+tsspolicypcr \- Runs TPM2 policypcr - .SH DESCRIPTION - policypcr - .PP -diff -ur tss2/utils/man/man1/tsspolicyrestart.1 tss2-new/utils/man/man1/tsspolicyrestart.1 ---- tss2/utils/man/man1/tsspolicyrestart.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicyrestart.1 2021-02-08 16:50:43.971602405 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYRESTART "1" "November 2020" "policyrestart 1.6" "User Commands" -+.TH TSSPOLICYRESTART "1" "November 2020" "tsspolicyrestart 1.6" "User Commands" - .SH NAME --policyrestart \- Runs TPM2 policyrestart -+tsspolicyrestart \- Runs TPM2 policyrestart - .SH DESCRIPTION - policyrestart - .PP -diff -ur tss2/utils/man/man1/tsspolicysecret.1 tss2-new/utils/man/man1/tsspolicysecret.1 ---- tss2/utils/man/man1/tsspolicysecret.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicysecret.1 2021-02-08 16:50:52.506490523 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYSECRET "1" "November 2020" "policysecret 1.6" "User Commands" -+.TH TSSPOLICYSECRET "1" "November 2020" "tsspolicysecret 1.6" "User Commands" - .SH NAME --policysecret \- Runs TPM2 policysecret -+tsspolicysecret \- Runs TPM2 policysecret - .SH DESCRIPTION - policysecret - .PP -diff -ur tss2/utils/man/man1/tsspolicysigned.1 tss2-new/utils/man/man1/tsspolicysigned.1 ---- tss2/utils/man/man1/tsspolicysigned.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicysigned.1 2021-02-08 16:51:27.980025490 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYSIGNED "1" "November 2020" "policysigned 1.6" "User Commands" -+.TH TSSPOLICYSIGNED "1" "November 2020" "tsspolicysigned 1.6" "User Commands" - .SH NAME --policysigned \- Runs TPM2 policysigned -+tsspolicysigned \- Runs TPM2 policysigned - .SH DESCRIPTION - policysigned - .PP -diff -ur tss2/utils/man/man1/tsspolicytemplate.1 tss2-new/utils/man/man1/tsspolicytemplate.1 ---- tss2/utils/man/man1/tsspolicytemplate.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicytemplate.1 2021-02-08 16:51:37.439901481 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYTEMPLATE "1" "November 2020" "policytemplate 1.6" "User Commands" -+.TH TSSPOLICYTEMPLATE "1" "November 2020" "tsspolicytemplate 1.6" "User Commands" - .SH NAME --policytemplate \- Runs TPM2 policytemplate -+tsspolicytemplate \- Runs TPM2 policytemplate - .SH DESCRIPTION - policytemplate - .PP -diff -ur tss2/utils/man/man1/tsspolicyticket.1 tss2-new/utils/man/man1/tsspolicyticket.1 ---- tss2/utils/man/man1/tsspolicyticket.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspolicyticket.1 2021-02-08 16:51:47.471769976 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POLICYTICKET "1" "November 2020" "policyticket 1.6" "User Commands" -+.TH TSSPOLICYTICKET "1" "November 2020" "tsspolicyticket 1.6" "User Commands" - .SH NAME --policyticket \- Runs TPM2 policyticket -+tsspolicyticket \- Runs TPM2 policyticket - .SH DESCRIPTION - policyticket - .PP -diff -ur tss2/utils/man/man1/tsspowerup.1 tss2-new/utils/man/man1/tsspowerup.1 ---- tss2/utils/man/man1/tsspowerup.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspowerup.1 2021-02-08 16:51:56.862646874 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH POWERUP "1" "November 2020" "powerup 1.6" "User Commands" -+.TH TSSPOWERUP "1" "November 2020" "tsspowerup 1.6" "User Commands" - .SH NAME --powerup \- Runs TPM2 powerup -+tsspowerup \- Runs TPM2 powerup - .SH DESCRIPTION - powerup - .PP -diff -ur tss2/utils/man/man1/tssprintattr.1 tss2-new/utils/man/man1/tssprintattr.1 ---- tss2/utils/man/man1/tssprintattr.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssprintattr.1 2021-02-08 16:52:06.023526784 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH PRINTATTR "1" "November 2020" "printattr 1.6" "User Commands" -+.TH TSSPRINTATTR "1" "November 2020" "tssprintattr 1.6" "User Commands" - .SH NAME --printattr \- Runs TPM2 printattr -+tssprintattr \- Runs TPM2 printattr - .SH DESCRIPTION - printattr - .PP -diff -ur tss2/utils/man/man1/tsspublicname.1 tss2-new/utils/man/man1/tsspublicname.1 ---- tss2/utils/man/man1/tsspublicname.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsspublicname.1 2021-02-08 16:52:14.554414957 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH PUBLICNAME "1" "November 2020" "publicname 1.6" "User Commands" -+.TH TSSPUBLICNAME "1" "November 2020" "tsspublicname 1.6" "User Commands" - .SH NAME --publicname \- Runs TPM2 publicname -+tsspublicname \- Runs TPM2 publicname - .SH DESCRIPTION - publicname - .PP -diff -ur tss2/utils/man/man1/tssquote.1 tss2-new/utils/man/man1/tssquote.1 ---- tss2/utils/man/man1/tssquote.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssquote.1 2021-02-08 16:52:23.116302717 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH QUOTE "1" "November 2020" "quote 1.6" "User Commands" -+.TH TSSQUOTE "1" "November 2020" "tssquote 1.6" "User Commands" - .SH NAME --quote \- Runs TPM2 quote -+tssquote \- Runs TPM2 quote - .SH DESCRIPTION - quote - .PP -diff -ur tss2/utils/man/man1/tssreadclock.1 tss2-new/utils/man/man1/tssreadclock.1 ---- tss2/utils/man/man1/tssreadclock.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssreadclock.1 2021-02-08 16:52:31.921187293 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH READCLOCK "1" "November 2020" "readclock 1.6" "User Commands" -+.TH TSSREADCLOCK "1" "November 2020" "tssreadclock 1.6" "User Commands" - .SH NAME --readclock \- Runs TPM2 readclock -+tssreadclock \- Runs TPM2 readclock - .SH DESCRIPTION - readclock - .PP -diff -ur tss2/utils/man/man1/tssreadpublic.1 tss2-new/utils/man/man1/tssreadpublic.1 ---- tss2/utils/man/man1/tssreadpublic.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssreadpublic.1 2021-02-08 16:52:40.749071567 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH READPUBLIC "1" "November 2020" "readpublic 1.6" "User Commands" -+.TH TSSREADPUBLIC "1" "November 2020" "tssreadpublic 1.6" "User Commands" - .SH NAME --readpublic \- Runs TPM2 readpublic -+tssreadpublic \- Runs TPM2 readpublic - .SH DESCRIPTION - readpublic - .PP -diff -ur tss2/utils/man/man1/tssreturncode.1 tss2-new/utils/man/man1/tssreturncode.1 ---- tss2/utils/man/man1/tssreturncode.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssreturncode.1 2021-02-08 16:52:49.563956012 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH RETURNCODE "1" "November 2020" "returncode 1.6" "User Commands" -+.TH TSSRETURNCODE "1" "November 2020" "tssreturncode 1.6" "User Commands" - .SH NAME --returncode \- Runs TPM2 returncode -+tssreturncode \- Runs TPM2 returncode - .SH SYNOPSIS - .B returncode - \fI\,hex-number\/\fR -diff -ur tss2/utils/man/man1/tssrewrap.1 tss2-new/utils/man/man1/tssrewrap.1 ---- tss2/utils/man/man1/tssrewrap.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssrewrap.1 2021-02-08 16:52:58.230842398 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH REWRAP "1" "November 2020" "rewrap 1.6" "User Commands" -+.TH TSSREWRAP "1" "November 2020" "tssrewrap 1.6" "User Commands" - .SH NAME --rewrap \- Runs TPM2 rewrap -+tssrewrap \- Runs TPM2 rewrap - .SH DESCRIPTION - rewrap - .PP -diff -ur tss2/utils/man/man1/tssrsadecrypt.1 tss2-new/utils/man/man1/tssrsadecrypt.1 ---- tss2/utils/man/man1/tssrsadecrypt.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssrsadecrypt.1 2021-02-08 16:53:07.510720751 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH RSADECRYPT "1" "November 2020" "rsadecrypt 1.6" "User Commands" -+.TH TSSRSADECRYPT "1" "November 2020" "tssrsadecrypt 1.6" "User Commands" - .SH NAME --rsadecrypt \- Runs TPM2 rsadecrypt -+tssrsadecrypt \- Runs TPM2 rsadecrypt - .SH DESCRIPTION - rsadecrypt - .PP -diff -ur tss2/utils/man/man1/tssrsaencrypt.1 tss2-new/utils/man/man1/tssrsaencrypt.1 ---- tss2/utils/man/man1/tssrsaencrypt.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssrsaencrypt.1 2021-02-08 16:53:16.856598240 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH RSAENCRYPT "1" "November 2020" "rsaencrypt 1.6" "User Commands" -+.TH TSSRSAENCRYPT "1" "November 2020" "tssrsaencrypt 1.6" "User Commands" - .SH NAME --rsaencrypt \- Runs TPM2 rsaencrypt -+tssrsaencrypt \- Runs TPM2 rsaencrypt - .SH DESCRIPTION - rsaencrypt - .PP -diff -ur tss2/utils/man/man1/tsssequencecomplete.1 tss2-new/utils/man/man1/tsssequencecomplete.1 ---- tss2/utils/man/man1/tsssequencecomplete.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsssequencecomplete.1 2021-02-08 16:53:26.029477990 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH SEQUENCECOMPLETE "1" "November 2020" "sequencecomplete 1.6" "User Commands" -+.TH TSSSEQUENCECOMPLETE "1" "November 2020" "tsssequencecomplete 1.6" "User Commands" - .SH NAME --sequencecomplete \- Runs TPM2 sequencecomplete -+tsssequencecomplete \- Runs TPM2 sequencecomplete - .SH DESCRIPTION - sequencecomplete - .PP -diff -ur tss2/utils/man/man1/tsssequenceupdate.1 tss2-new/utils/man/man1/tsssequenceupdate.1 ---- tss2/utils/man/man1/tsssequenceupdate.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsssequenceupdate.1 2021-02-08 16:53:35.202357744 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH SEQUENCEUPDATE "1" "November 2020" "sequenceupdate 1.6" "User Commands" -+.TH TSSSEQUENCEUPDATE "1" "November 2020" "tsssequenceupdate 1.6" "User Commands" - .SH NAME --sequenceupdate \- Runs TPM2 sequenceupdate -+tsssequenceupdate \- Runs TPM2 sequenceupdate - .SH DESCRIPTION - sequenceupdate - .PP -diff -ur tss2/utils/man/man1/tsssetcommandcodeauditstatus.1 tss2-new/utils/man/man1/tsssetcommandcodeauditstatus.1 ---- tss2/utils/man/man1/tsssetcommandcodeauditstatus.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsssetcommandcodeauditstatus.1 2021-02-08 16:53:46.149214239 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH SETCOMMANDCODEAUDITSTATUS "1" "November 2020" "setcommandcodeauditstatus 1.6" "User Commands" -+.TH TSSSETCOMMANDCODEAUDITSTATUS "1" "November 2020" "tsssetcommandcodeauditstatus 1.6" "User Commands" - .SH NAME --setcommandcodeauditstatus \- Runs TPM2 setcommandcodeauditstatus -+tsssetcommandcodeauditstatus \- Runs TPM2 setcommandcodeauditstatus - .SH DESCRIPTION - setprimarypolicy - .PP -diff -ur tss2/utils/man/man1/tsssetprimarypolicy.1 tss2-new/utils/man/man1/tsssetprimarypolicy.1 ---- tss2/utils/man/man1/tsssetprimarypolicy.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsssetprimarypolicy.1 2021-02-08 16:53:55.438092468 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH SETPRIMARYPOLICY "1" "November 2020" "setprimarypolicy 1.6" "User Commands" -+.TH TSSSETPRIMARYPOLICY "1" "November 2020" "tsssetprimarypolicy 1.6" "User Commands" - .SH NAME --setprimarypolicy \- Runs TPM2 setprimarypolicy -+tsssetprimarypolicy \- Runs TPM2 setprimarypolicy - .SH DESCRIPTION - setprimarypolicy - .PP -diff -ur tss2/utils/man/man1/tssshutdown.1 tss2-new/utils/man/man1/tssshutdown.1 ---- tss2/utils/man/man1/tssshutdown.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssshutdown.1 2021-02-08 16:54:04.711970895 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH SHUTDOWN "1" "November 2020" "shutdown 1.6" "User Commands" -+.TH TSSSHUTDOWN "1" "November 2020" "tssshutdown 1.6" "User Commands" - .SH NAME --shutdown \- Runs TPM2 shutdown -+tssshutdown \- Runs TPM2 shutdown - .SH DESCRIPTION - shutdown - .PP -diff -ur tss2/utils/man/man1/tsssign.1 tss2-new/utils/man/man1/tsssign.1 ---- tss2/utils/man/man1/tsssign.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsssign.1 2021-02-08 16:54:13.183859837 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH SIGN "1" "November 2020" "sign 1.6" "User Commands" -+.TH TSSSIGN "1" "November 2020" "tsssign 1.6" "User Commands" - .SH NAME --sign \- Runs TPM2 sign -+tsssign \- Runs TPM2 sign - .SH DESCRIPTION - sign - .PP -diff -ur tss2/utils/man/man1/tsssignapp.1 tss2-new/utils/man/man1/tsssignapp.1 ---- tss2/utils/man/man1/tsssignapp.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsssignapp.1 2021-02-08 16:54:21.778747167 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH SIGNAPP "1" "November 2020" "signapp 1.6" "User Commands" -+.TH TSSSIGNAPP "1" "November 2020" "tsssignapp 1.6" "User Commands" - .SH NAME --signapp \- Runs TPM2 signapp -+tsssignapp \- Runs TPM2 signapp - .SH DESCRIPTION - signapp - .PP -diff -ur tss2/utils/man/man1/tssstartauthsession.1 tss2-new/utils/man/man1/tssstartauthsession.1 ---- tss2/utils/man/man1/tssstartauthsession.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssstartauthsession.1 2021-02-08 16:54:31.697617140 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH STARTAUTHSESSION "1" "November 2020" "startauthsession 1.6" "User Commands" -+.TH TSSSTARTAUTHSESSION "1" "November 2020" "tssstartauthsession 1.6" "User Commands" - .SH NAME --startauthsession \- Runs TPM2 startauthsession -+tssstartauthsession \- Runs TPM2 startauthsession - .SH DESCRIPTION - startauthsession - .PP -diff -ur tss2/utils/man/man1/tssstartup.1 tss2-new/utils/man/man1/tssstartup.1 ---- tss2/utils/man/man1/tssstartup.1 2020-12-22 11:02:31.000000000 -0700 -+++ tss2-new/utils/man/man1/tssstartup.1 2021-02-08 16:54:40.409502937 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH STARTUP "1" "December 2020" "startup 1.3" "User Commands" -+.TH TSSSTARTUP "1" "December 2020" "tssstartup 1.3" "User Commands" - .SH NAME --startup \- Runs TPM2 startup -+tssstartup \- Runs TPM2 startup - .SH DESCRIPTION - startup - .PP -diff -ur tss2/utils/man/man1/tssstirrandom.1 tss2-new/utils/man/man1/tssstirrandom.1 ---- tss2/utils/man/man1/tssstirrandom.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssstirrandom.1 2021-02-08 16:54:49.478384047 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH STIRRANDOM "1" "November 2020" "stirrandom 1.6" "User Commands" -+.TH TSSSTIRRANDOM "1" "November 2020" "tssstirrandom 1.6" "User Commands" - .SH NAME --stirrandom \- Runs TPM2 stirrandom -+tssstirrandom \- Runs TPM2 stirrandom - .SH DESCRIPTION - stirrandom - .PP -diff -ur tss2/utils/man/man1/tsstimepacket.1 tss2-new/utils/man/man1/tsstimepacket.1 ---- tss2/utils/man/man1/tsstimepacket.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsstimepacket.1 2021-02-08 16:54:59.412253821 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH TIMEPACKET "1" "November 2020" "timepacket 1.6" "User Commands" -+.TH TSSTIMEPACKET "1" "November 2020" "tsstimepacket 1.6" "User Commands" - .SH NAME --timepacket \- Runs TPM2 timepacket -+tsstimepacket \- Runs TPM2 timepacket - .SH DESCRIPTION - timepacket - .PP -diff -ur tss2/utils/man/man1/tsstpm2pem.1 tss2-new/utils/man/man1/tsstpm2pem.1 ---- tss2/utils/man/man1/tsstpm2pem.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsstpm2pem.1 2021-02-08 16:55:08.168139038 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH TPM2PEM "1" "November 2020" "tpm2pem 1.6" "User Commands" -+.TH TSSTPM2PEM "1" "November 2020" "tsstpm2pem 1.6" "User Commands" - .SH NAME --tpm2pem \- Runs TPM2 tpm2pem -+tsstpm2pem \- Runs TPM2 tpm2pem - .SH DESCRIPTION - tpm2pem - .PP -diff -ur tss2/utils/man/man1/tsstpmcmd.1 tss2-new/utils/man/man1/tsstpmcmd.1 ---- tss2/utils/man/man1/tsstpmcmd.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsstpmcmd.1 2021-02-08 16:55:17.363018503 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH TPMCMD "1" "November 2020" "tpmcmd 1.6" "User Commands" -+.TH TSSTPMCMD "1" "November 2020" "tsstpmcmd 1.6" "User Commands" - .SH NAME --tpmcmd \- Runs TPM2 tpmcmd -+tsstpmcmd \- Runs TPM2 tpmcmd - .SH DESCRIPTION - tpmcmd - .PP -diff -ur tss2/utils/man/man1/tsstpmpublic2eccpoint.1 tss2-new/utils/man/man1/tsstpmpublic2eccpoint.1 ---- tss2/utils/man/man1/tsstpmpublic2eccpoint.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsstpmpublic2eccpoint.1 2021-02-08 16:55:29.710856638 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH TPMPUBLIC2ECCPOINT "1" "November 2020" "tpmpublic2eccpoint 1.6" "User Commands" -+.TH TSSTPMPUBLIC2ECCPOINT "1" "November 2020" "tsstpmpublic2eccpoint 1.6" "User Commands" - .SH NAME --tpmpublic2eccpoint \- Runs TPM2 tpmpublic2eccpoint -+tsstpmpublic2eccpoint \- Runs TPM2 tpmpublic2eccpoint - .SH DESCRIPTION - tpmpublic2eccpoint - .PP -diff -ur tss2/utils/man/man1/tssunseal.1 tss2-new/utils/man/man1/tssunseal.1 ---- tss2/utils/man/man1/tssunseal.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssunseal.1 2021-02-08 16:55:38.629739505 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH UNSEAL "1" "November 2020" "unseal 1.6" "User Commands" -+.TH TSSUNSEAL "1" "November 2020" "tssunseal 1.6" "User Commands" - .SH NAME --unseal \- Runs TPM2 unseal -+tssunseal \- Runs TPM2 unseal - .SH DESCRIPTION - unseal - .PP -diff -ur tss2/utils/man/man1/tssverifysignature.1 tss2-new/utils/man/man1/tssverifysignature.1 ---- tss2/utils/man/man1/tssverifysignature.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tssverifysignature.1 2021-02-08 16:55:47.469623345 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH VERIFYSIGNATURE "1" "November 2020" "verifysignature 1.6" "User Commands" -+.TH TSSVERIFYSIGNATURE "1" "November 2020" "tssverifysignature 1.6" "User Commands" - .SH NAME --verifysignature \- Runs TPM2 verifysignature -+tssverifysignature \- Runs TPM2 verifysignature - .SH DESCRIPTION - verifysignature - .PP -diff -ur tss2/utils/man/man1/tsswriteapp.1 tss2-new/utils/man/man1/tsswriteapp.1 ---- tss2/utils/man/man1/tsswriteapp.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsswriteapp.1 2021-02-08 16:55:56.577503665 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH WRITEAPP "1" "November 2020" "writeapp 1.6" "User Commands" -+.TH TSSWRITEAPP "1" "November 2020" "tsswriteapp 1.6" "User Commands" - .SH NAME --writeapp \- Runs TPM2 writeapp -+tsswriteapp \- Runs TPM2 writeapp - .SH DESCRIPTION - writeapp - .PP -diff -ur tss2/utils/man/man1/tsszgen2phase.1 tss2-new/utils/man/man1/tsszgen2phase.1 ---- tss2/utils/man/man1/tsszgen2phase.1 2021-01-15 14:45:18.000000000 -0700 -+++ tss2-new/utils/man/man1/tsszgen2phase.1 2021-02-08 16:56:07.272363121 -0700 -@@ -1,7 +1,7 @@ - .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. --.TH ZGEN2PHASE "1" "November 2020" "zgen2phase 1.6" "User Commands" -+.TH TSSZGEN2PHASE "1" "November 2020" "tsszgen2phase 1.6" "User Commands" - .SH NAME --zgen2phase \- Runs TPM2 zgen2phase -+tsszgen2phase \- Runs TPM2 zgen2phase - .SH DESCRIPTION - zgen2phase - .PP diff --git a/SPECS/tss2.spec b/SPECS/tss2.spec index 0899e2d..48dc074 100644 --- a/SPECS/tss2.spec +++ b/SPECS/tss2.spec @@ -3,24 +3,25 @@ # %{!?__global_ldflags: %global __global_ldflags -Wl,-z,relro} -%global incname ibmtss - Name: tss2 -Version: 1.6.0 -Release: 1%{?dist} -Epoch: 1 +Version: 1331 +Release: 2%{?dist} Summary: IBM's TCG Software Stack (TSS) for TPM 2.0 and related utilities +Group: Applications/System License: BSD URL: http://sourceforge.net/projects/ibmtpm20tss/ Source0: https://sourceforge.net/projects/ibmtpm20tss/files/ibmtss%{version}.tar.gz -Patch0: tss2-1.6.0-manpage-cleanup.patch -BuildRequires: automake -BuildRequires: autoconf -BuildRequires: libtool -BuildRequires: gcc +Patch4: flags-fixup.patch +# reported upstream https://sourceforge.net/p/ibmtpm20tss/mailman/message/36444738/ +# and reported fixed, but not yet pushed to sourceforge. +Patch5: hash_generate.patch +# Submitted upstream +Patch6: 0001-tss2-fix-bounds-check-in-IMA_Event_PcrExtend.patch + BuildRequires: openssl-devel +BuildRequires: gcc Requires: openssl %description @@ -34,47 +35,70 @@ education and debugging. %package devel Summary: Development libraries and headers for IBM's TSS 2.0 -Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} %description devel Development libraries and headers for IBM's TSS 2.0. You will need this in order to build TSS 2.0 applications. +%define incname ibmtss + %prep %autosetup -p1 -c %{name}-%{version} %build -autoreconf -vi -%configure --disable-static --disable-tpm-1.2 --program-prefix=tss +# nonstandard variable names are used in place of CFLAGS and LDFLAGS +pushd utils CCFLAGS="%{optflags}" \ LNFLAGS="%{__global_ldflags}" \ -%{make_build} +make -f makefile.fedora %{?_smp_mflags} +popd %install -%make_install -find %{buildroot} -type f -name "*.la" -delete -print +# Prefix for namespacing +BIN_PREFIX=tss +mkdir -p %{buildroot}/%{_bindir} +mkdir -p %{buildroot}/%{_libdir} +mkdir -p %{buildroot}/%{_includedir}/%{incname}/ +mkdir -p %{buildroot}/%{_mandir}/man1 +pushd utils +# Pick out executables and copy with namespacing +for f in *; do + if [[ -x $f && -f $f && ! $f =~ .*\..* ]]; then + cp -p $f %{buildroot}/%{_bindir}/${BIN_PREFIX}$f + fi; +done +cp -p *.so.1.1 %{buildroot}/%{_libdir} +cp -p %{incname}/*.h %{buildroot}/%{_includedir}/%{incname}/ +cp -p man/man1/tss*.1 %{buildroot}/%{_mandir}/man1/ +popd -%ldconfig_scriptlets + +# Make symbolic links to the shared lib +pushd %{buildroot}/%{_libdir} +rm -f libibmtss.so.1 +ln -sf libibmtss.so.1.1 libibmtss.so.1 +rm -f libibmtss.so +ln -sf libibmtss.so.1 libibmtss.so +popd + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig %files %license LICENSE %{_bindir}/tss* -%{_libdir}/libibmtss.so.* -%{_libdir}/libibmtssutils.so.* +%{_libdir}/libibmtss.so.1 +%{_libdir}/libibmtss.so.1.* %attr(0644, root, root) %{_mandir}/man1/tss*.1* %files devel %{_includedir}/%{incname} %{_libdir}/libibmtss.so -%{_libdir}/libibmtssutils.so %doc ibmtss.doc %changelog -* Tue May 18 2021 Jerry Snitselaar - 1.6.0-1 -- Rebase to v1.6.0 release. -- Manpage cleanup. -resolves: rhbz#1822073 - * Thu Jun 06 2019 Jerry Snitselaar - 1331-2 - Fix bounds check in IMA_Event_PcrExtend resolves: rhbz#1669239