logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

TPMLIB_ValidateState - Validate the state blobs of the TPM

Description

The TPMLIB_ValidateState() function allows a user to validate the state blobs that the TPM would read upon TPMLIB_MainInit() or once the TPM_Startup command has been sent to it. This function is useful for TPM state migration between possibly different version of libtpms. Here the target libtpms needs to be able to determine whether it can support the version of blobs that were migrated and if this is not the case, the caller can refuse the migration. The tpmlib_state parameter can be a logical 'or' of one or multiple of of the following: TPMLIB_STATE_PERMANENT, TPMLIB_STATE_VOLATILE, or TPMLIB_STATE_SAVE_STATE. The flags parameter is currently not used and should be set to 0. The first state blob that should be loaded is the permanent state, since for example the volatile state requires it to be available for validation. This function should be called before TPMLIB_MainInit() is invoked.

Library

TPM library (libtpms, -ltpms)

Name

TPMLIB_ValidateState - Validate the state blobs of the TPM

See Also

TPMLIB_MainInit(3), TPMLIB_Terminate(3) libtpms 2025-06-25 TPMLIB_ValidateState(3)

Synopsis

#include<libtpms/tpm_library.h> uint32_tTPMLIB_ValidateState(TPMLIB_StateTypest,unsignedintflags);

See Also