mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-28 14:43:37 +02:00

Calculate the boot_aggregate for each TPM bank and verify that the boot_aggregate in the IMA measurement list matches one of them. A software TPM may be used to verify the boot_aggregate. If a software TPM is not already running on the system, this test starts one and initializes the TPM PCR banks by walking the sample binary_bios_measurements event log, included in this directory, and extending the TPM PCRs. The associated ascii_runtime_measurements for verifying the calculated boot_aggregate is included in this directory as well. Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
13 lines
244 B
Makefile
13 lines
244 B
Makefile
check_SCRIPTS =
|
|
TESTS = $(check_SCRIPTS)
|
|
|
|
check_SCRIPTS += ima_hash.test sign_verify.test boot_aggregate.test
|
|
|
|
clean-local:
|
|
-rm -f *.txt *.out *.sig *.sig2
|
|
|
|
distclean: distclean-keys
|
|
.PHONY: distclean-keys
|
|
distclean-keys:
|
|
./gen-keys.sh clean
|