diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-09-18 11:58:58 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-09-18 16:56:13 -0700 |
commit | cd713d4de6c3d08478d6f6ca27b0f9e1afd439fe (patch) | |
tree | 9e88a2bafa6f0a61e1d5b538a61783f32f5e09ff /TPM2-Plugin/README.md | |
parent | 4c55afa7b4d870c4fb366699b5e83efa5a9944a3 (diff) |
Add support for PRK password in TPM plugin
PRK Password needs to be passed to TPM Plugin
for load key operations to work.
P7: Moved readPassword to calling function
P8: Check size of password string before memcpy
P9: Updated readme
Issue-ID: AAF-484
Change-Id: I213446012005f2919ee0912ccfe99c3a555ccb74
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'TPM2-Plugin/README.md')
-rw-r--r-- | TPM2-Plugin/README.md | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/TPM2-Plugin/README.md b/TPM2-Plugin/README.md index 978495c..5d8183f 100644 --- a/TPM2-Plugin/README.md +++ b/TPM2-Plugin/README.md @@ -1,16 +1,26 @@ -## Introduction +# Introduction This is TPM2-Plugin to load asymetric key pairs to TPM2.0 module. The private part of keys can only be used for signing when it is loaded in TPM module. -### Build +Loading Password protected Primary Keys in plugin requires the setting of the +following ENVIRONMENT Variable: +``` +TPM_PRK_PASSWORD +``` +The plugin will read this and setup hmac appropriately for the session. +## Build +``` ./bootstrap ./configure --prefix test +``` -### Installation +## Installation and Uninstallation +``` make install +``` -###Uninstall - +``` make clean make distclean +```
\ No newline at end of file |