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_DecodeBlob - Decode a base64-encode TPM blob

Description

The TPMLIB_DecodeBlob() function is used to decode a base64-encoded TPM state blob. The caller must pass what type of blob is expected to be decoded and following that the function will look for the start and end markers of the data. The following types of blobs are supported along with their start and end markers: BLOB_TYPE_INITSTATE '-----BEGIN INITSTATE-----' marks the beginning of the base64-encoded blob. '-----END INITSTATE-----' marks the end of the base64-encoded blob. This function is useful when passing state to the TPM inside the callback that is invoked to get the TPM's state blob. See TPMLIB_RegisterCallbacks(3).

Errors

TPM_SUCCESS The function completed successfully. TPM_SIZE The size of a requested buffer exceeds the limit or the system is out of memory. TPM_FAIL An error occurred while attempting to decode the blob. For a complete list of TPM error codes please consult the include file libtpms/tpm_error.h

Name

TPMLIB_DecodeBlob - Decode a base64-encode TPM blob

See Also

TPMLIB_MainInit(3), TPMLIB_RegisterCallbacks(3) libtpms 2025-06-25 TPMLIB_DecodeBlob(3)

Synopsis

#include<libtpms/tpm_types.h> #include<libtpms/tpm_library.h> TPM_RESULTTPMLIB_DecodeBlob(constchar *buffer,enumTPMLIB_BlobTypetype,unsignedchar **resultsize_t *result_len);

See Also