commit | aadc19b0445b5bc0d1cf9fdc2d87460893194d06 | [log] [tgz] |
---|---|---|
author | Edward Hill <ecgh@chromium.org> | Fri Jan 13 22:20:12 2023 +0000 |
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | Sat Feb 04 04:59:15 2023 +0000 |
tree | fda617b9ed4d17a5485dacb37be23ed3b00305c6 | |
parent | 19fa7b1d5ae0953fc7bbef81ceb87ab0fbee299f [diff] |
pinweaver: fix pw_handle_block_generate_ba_pk definition BUG=b:248209280 TEST=none Change-Id: Iaa8ae2c9018902bcd9215f468a6ae28e149ffbc1 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/pinweaver/+/4166228 Reviewed-by: Howard Yang <hcyang@google.com> Reviewed-by: Yi Chou <yich@google.com> Commit-Queue: Howard Yang <hcyang@google.com> Tested-by: Howard Yang <hcyang@google.com> Reviewed-by: Andrey Pronin <apronin@chromium.org>
This directory contains reference PinWeaver code that can be used across implementation platforms.
It consists of:
pinweaver.h
- PinWeaver embedded API definitionpinweaver.c
- implementationpinweaver_eal.h
- API for Environment Abstraction Layer (EAL) used by PinWeavereal/**/pinweaver_eal_types.h
pinweaver_types.h
- header that is shared by PinWeaver implementation and PinWeaver clients that call it through platform-specific interface.eal/
foldereal/cr50
- implementation for cr50pinweaver_eal_types.h
- cr50-specific EAL API typespinweaver_eal.c
- cr50 implementation of EALeal/tpm_storage
- implementation for platforms that use TPM as PinWeaver data storagepinweaver_eal_types.h
- TPM-storage-specific EAL API typespinweaver_eal_tpm.h
- additional EAL functions required by TPM storagepinweaver_eal_linux.c
- implementation of non-storage EAL methods for Linux casetpm_storage_stubs.c
- empty implementation of storage EAL methodstpm_storage.c
- implementation of storage EAL methods on top of TSSmini_trunks/
- mini-TSS (TPM client software stack) used by TPM storage implementationpinweaver_eal.h
+ pinweaver_eal_tpm.h
EAL methodstss.h
+ *authorization_delegate.h
A platform implementation that uses TPM storage EAL option needs to implement all EAL methods implemented in pinweaver_eal_linux.c
(or use it as-is, if Linux compatible).