Jürgen Repp
Jürgen Repp
@ral00 Thank you for sending the debug output. Could you please check whether after the clear still only the sha1 bank is available? `tss2_getinfo -o -| grep PCRS -A 60`
@ral00 with: `tpm2_getcap properties-variable | grep ehEnable` you can see that the endorsement hierarchy is enabled. Thus `tmp2_hierarchycontrol ` is not needed. It would be nice to get the output...
@ral00 @williamcroberts With this Intel TPM the download of the Intel certificate failed. Only sha1 was available on the TPM and the public key of the EK was hashed with...
> How was the value Eny1GbQ2qCcfj-6s5wjAYdWlUgzW6wjEN4fxZXsCBlY%3D calculated? The URL was computed in: https://github.com/tpm2-software/tpm2-tss/blob/912acd8b8aeba79f7d284112802e42c383c0ccc9/src/tss2-fapi/ifapi_get_intl_cert.c#L322 * First the sha256 hash of the ek public was computed. * The base64 data for this...
@malikabhi05 @idesai Could you please run the tss2_provisioning of one fapi test e.g. fapi-get-random.sh with: ``` ls -l */* >&2 TSS2_LOG=fapi+trace tss2_provision ``` The profile, which was not found, should...
The problem is caused by the following function calls in `ifapi_io_dirfiles` ``` dir = opendir("/tmp/tpm2_test_9XejpY/tss2_fapi.lzKsy4/") entry = readdir(dir) ``` readdir does not deliver entries, although files are present in this...
With `tss2_getinfo -o -| more` the FAPI configuration will be displayed. The system and the user directory can be determined. The default directory for keys created by `tss2_createkey` is the...
@idesai Yes it can be closed. If in the future FAPI event logging will be integrated we can add the file which I currently use in the FAPI tss2 tests.
The error seems to occur because the following code is not executed: ``` #if OPENSSL_VERSION_NUMBER >= 0x10101000L case NID_sm2: tpmCurveId = TPM2_ECC_SM2_P256; break; #endif ``` So what OpenSSL Version do...
With openssl version : 1.1.1k NID_sm2 should be defined. Could you please check whether the correct h file is included. ``` cd tpm2-tss gcc -M src/tss2-fapi/fapi_crypto.c -I src -I include/tss2|...