summaryrefslogtreecommitdiffstats
path: root/src/usr/secureboot/runtime
diff options
context:
space:
mode:
authorNick Bofferding <bofferdn@us.ibm.com>2017-01-25 13:10:08 -0600
committerWilliam G. Hoffa <wghoffa@us.ibm.com>2017-02-02 15:06:55 -0500
commita42bbccdd949bc4b78e856087019c73a126420d4 (patch)
tree5fdc402c77c9578d3ddbcd4095cfe887f0f44cf6 /src/usr/secureboot/runtime
parent31591a027b6d76be0cd081d3bcce2e746fdc7623 (diff)
downloadtalos-hostboot-a42bbccdd949bc4b78e856087019c73a126420d4.tar.gz
talos-hostboot-a42bbccdd949bc4b78e856087019c73a126420d4.zip
Support extending sections to PCRs
- Ported p8 secureboot PCR extension code Change-Id: I2bbf6ee6b2980c2fbe32dfb9cad25e9e2aba3285 RTC: 167581 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35632 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Marshall J. Wilks <mjwilks@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/usr/secureboot/runtime')
-rw-r--r--src/usr/secureboot/runtime/rt_secureboot.C14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/secureboot/runtime/rt_secureboot.C b/src/usr/secureboot/runtime/rt_secureboot.C
index 8ab6d5e51..3b7626553 100644
--- a/src/usr/secureboot/runtime/rt_secureboot.C
+++ b/src/usr/secureboot/runtime/rt_secureboot.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2016 */
+/* Contributors Listed Below - COPYRIGHT 2016,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -38,17 +38,17 @@ namespace SECUREBOOT
int verify_container(
const void* i_pContainer,
- const void* i_pHwHashKey,
- const size_t i_hwHashKeySize)
+ const void* i_pHwKeyHash,
+ const size_t i_hwKeyHashSize)
{
int rc = 0;
- SB_ENTER(
+ SB_ENTER(
"verify_container: "
"container ptr = %p, "
- "HW hash key ptr = %p, "
- "HW hash key size = %d",
- i_pContainer,i_pHwHashKey,i_hwHashKeySize);
+ "HW keys' hash ptr = %p, "
+ "HW keys' hash size = %d",
+ i_pContainer,i_pHwKeyHash,i_hwKeyHashSize);
// TODO: RTC 156485
// Implement guts of verify_container
OpenPOWER on IntegriCloud